I am trying to remove all notifications from the notification centre of iOS when a user logs out of the app. This is the code that I am using:
// Clear out notifications from the notification centre and reset notification badge on the home page
UIApplication.sharedApplication().applicationIconBadgeNumber = 0
UIApplication.sharedApplication().cancelAllLocalNotifications()
Is there anything that I am missing.