在didReceiveLocalNotification

时间:2016-01-11 19:29:23

标签: ios swift push-notification

我已安排了一些通知,在某些情况下我需要在触发此通知时取消通知并调用方法didReceiveLocalNotification。我的代码在这里

    func application(application: UIApplication, didReceiveLocalNotification notification: UILocalNotification) {
        for notification in UIApplication.sharedApplication().scheduledLocalNotifications! {
            UIApplication.sharedApplication().cancelLocalNotification(notification)
        }
}

但是没有用,有没有想法如何取消此时的通知?

换句话说,我只想收到通知事件,状态栏上没有声音没有通知

0 个答案:

没有答案