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)

Html5 based widget for an iOS app: Today extension powered by the Ionic framework

At some point the thought of adding a Widget to my iOS app came to mind which was followed by starting work on adding a widget for my app, My Day Todos . Obviously the first step was to learn how to add a Widget to an iOS app and in that learning process I discovered many things about widgets in iOS first of which was a widget in iOS is a an app extension i.e a  Today Extension . While I am still haven't finished working on the widget for my iOS app, I thought I would take some time out and share what I have learned. In this post, I will share a few important tips and provide an example of how to add a Widget to an iOS app and have the widget UI powered by Html5 via  Ionic framework . I added some code to my Github repo, Html5StarterAppWithSwift in order to show how this can be achieved. There are already too many tutorials out on the Web on how to add a Today extension to an iOS app so I won't be including that here. Instead I will focus on sharing some of the useful tip...

Build a Full-Stack Image Upload App with Node.js, Express, React, and Vite (Beginner Tutorial)

 If you’re new to full-stack web development and want a hands-on project to practice React frontend integration with a Node.js + Express backend , this tutorial is for you. In this guide, we’ll walk through a simple but powerful app that lets users upload images, store them on the server, and display them back in the browser. This project is based on my GitHub repo: node-express-react-simple-fileupload . It’s designed to be beginner-friendly, SEO-optimized, and a great starting point for anyone learning JavaScript full-stack development . 🛠️ Technologies Used Here’s the tech stack powering this project: Node.js – JavaScript runtime for the backend. Express.js – Lightweight web framework for building REST APIs. Multer – Middleware for handling file uploads. CORS – Enables cross-origin requests between frontend and backend. React.js – Frontend library for building user interfaces. Vite – Fast development server and build tool for React. Fetch API – For making HTTP requests ...