cancelAllLocalNotifications並不在當前消息循環當即生效,在iOS8 iphone5下的測試代碼以下:web
- (void)cancelLocalNotificationsAndClearBadge { UIApplication *app = [UIApplication sharedApplication]; app.applicationIconBadgeNumber = 0; [app cancelAllLocalNotifications]; #ifdef DEBUG NSLog(@"after cancelAllLocalNotifications:%@", app.scheduledLocalNotifications); #endif }
打印log表面數組中仍是有值的。數組
而使用以下方法:app
可使得當即取值時,獲得正確的空數組:iphone
- (void)cancelLocalNotificationsAndClearBadge { UIApplication *app = [UIApplication sharedApplication]; app.applicationIconBadgeNumber = 0; app.scheduledLocalNotifications = nil; // [app cancelAllLocalNotifications]; #ifdef DEBUG NSLog(@"after cancelAllLocalNotifications:%@", app.scheduledLocalNotifications); #endif }