我尝试在用户退出应用时从iOS通知中心删除所有通知。这是我正在使用的代码:
// Clear out notifications from the notification centre and reset notification badge on the home page
UIApplication.sharedApplication().applicationIconBadgeNumber = 0
UIApplication.sharedApplication().cancelAllLocalNotifications()
我有什么遗漏。