Skip to main content

Why can't I cancel a local notification in my iOS app?(in Swift)

Prelude

I have mentioned the fact that I am working on my first iOS app in a number of my previous posts and as such I face a number of newbie/noob(?) problems. They are not really problems as much as they are simply things that I do not know, for e.g. the following,

Thankfully, I have managed to make at least one generic solution and contribute it to the community i.e. my open-source Xcode project template(HTML5StarterAppWithSwift) which you can get from Github.

So this post basically describes another very simple problem that I have found a solution to, but I do not fully understand why the problem was occurring in the first place.

Introduction

As I have mentioned in this post, my iOS app uses local notifications i.e. UILocalNotification and in my app a certain chain of events can cause the local notifications to be cancelled. Sounds fairly straight forward right? Well it is and it is not, read on to find out exactly what I mean

My problem

Now if you look at UIApplication, there are two methods to cancel notifications, below is a description of these from the Apple Docs
  1. cancelAllLocalNotifications: Cancels the delivery of all scheduled local notifications.
  2. cancelLocalNotification: Cancels the delivery of the specified scheduled local notification.

How was I trying to cancel the notifications?

Local notifications are divided into certain categories in my app and local notifications in iOS can bring an app to the foreground, which is where the notification category comes into play. How? you see, when my app is brought to the foreground, the following method in the AppDelegate is invoked
func application(application: UIApplication, didReceiveLocalNotification notification: UILocalNotification)
and when that happens the category of the notification that brought the app to the foreground is determined and all the notifications in that category are cancelled.

As I have identified before, there are 2 methods to cancel local notifications, now if I just used the cancelAllNotifications method, in the AppDelegate as follows, 
func application(application: UIApplication, didReceiveLocalNotification notification: UILocalNotification) {
    application.cancelAllLocalNotifications()    
}
that would work i.e. all the notifications would be cancelled. However I only wanted to cancel notifications of a particular category and not all of them so if I tried to cancel a single notification by doing something like this,
func application(application: UIApplication, didReceiveLocalNotification notification: UILocalNotification) {
    let dict = notification.userInfo!
    let notificationType = dict["type"] as! Int
    let notificationTypeX = 99
    if notificationType == notificationTypeX {
        //cancel all notifications of type X
        for notification:AnyObject in UIApplication.sharedApplication().scheduledLocalNotifications {
            let localNotification = notification as! UILocalNotification
            let lnDict = notification.userInfo!
            let type = lnDict["type"] as! Int
            if type == notificationType {
                application.cancelLocalNotification(localNotification)

            }
        }
    }
}
then it would not work i.e. the individual notifications that I wanted to cancel would not be cancelled. Why? As I said earlier, I do not fully understand why this is happening, however I did find a fix to my problem.

How did I solve my problem?

So in my app,  I have a helper classes(something like Helper.swift in the project), so if I move the above logic into the helper class then I am able to cancel individual notifications via the above logic. So a function/method like this would work
func cancelNotification(category:Int) {
    let application = UIApplication.sharedApplication()
    for notification:AnyObject in application.scheduledLocalNotifications {
        let scheduledNoti = notification as! UILocalNotification
        if let type = scheduledNoti.userInfo?["type"] as? Int {
            if type == category {
               application.cancelLocalNotification(scheduledNoti)
            }
        }
    }
}
Again, I do not know exactly why this is i.e. why can't you cancel a single notification from the AppDelegate? The only reason, I have not made a big effort to research into finding out why this is happening is because I have a ton of other problems to solve and get my app ready for release. Making an app Icon? ahh, I have no idea where to even start for that (Fiver maybe?) Anyway, if you are reading this blog and know more than I do, then please leave a comment.

Comments

Popular posts from this blog

Upload to AWS S3 from Java API

In this post, you will see code samples for how to upload a file to AWS S3 bucket from a Java Spring Boot app. The code you will see here is from one of my open-source repositories on Github, called document-sharing. Problem Let’s say you are building a document sharing app where you allow your users to upload the file to a public cloud solution. Now, let’s say you are building the API for your app with Spring Boot and you are using AWS S3 as your public cloud solution. How would you do that? This blog post contains the code that can help you achieve that. Read more below,  Upload to AWS S3 bucket from Java Spring Boot app - My Day To-Do (mydaytodo.com)

Addressing app review rejections for auto-renewing subscription in-app purchase (iOS)

The ability to know what the weather is like while planning your day is a feature of  My Day To-Do  Pro and as of the last update it’s also a part of the  Lite version . Unlike the Pro version it’s an auto-renewing subscription based  in-app purchase (IAP)  in the Lite version. What means is that when a user purchases it, the user only pays for the subscription duration after which the user will be automatically charged for the next period. Adding an  auto-renewing  subscription based IAP proved to be somewhat challenging in terms of the app store review i.e. the app update was rejected by the App Review team thrice because of missing information about the IAP. Therefore in this post I will share my experiences and knowledge of adding auto-renewing IAP in hopes to save someone else the time that I had to spend on this problem. In-App purchase This year I started adding IAPs to My Day To-Do Lite which lead to learning about different types of IAP...

Serving HTML content in an iOS app that works in iOS 7 and later (using Swift)

As I have mentioned in an earlier post , I really enjoying coding in Swift. Now what am I doing with it? Well I am trying to build an HTML5 app that must work on devices with iOS 7. So in iOS8 apple has introduced a whole bunch of features that facilitate easy communication between web content and lets just call it back-end Swift code, but those features are not in iOS 7. So why do I want to build something that would work in an older OS? well I do not expect existing iOS users to upgrade to iOS 8 straight away and i also know a couple of people who would be very reluctant to upgrade their iPhones to iOS 8. Now in case you do not, you can have a read of the "Working with WebViews" section of this post , to know how to serve HTML content with WebViews. So when I started building my app, I wanted to know: How do I invoke some Swift code from my HTML content? Well the solution to this may feel a little bit "hacky" but it is a solution to achieve this.  The followi...