删除某个索引路径上的UILocalnotification

时间:2011-04-04 23:01:00

标签: objective-c xcode uilocalnotification uiapplication nsindexpath

我有一堆UILocalNotifications但我只想在给定的索引路径中删除某个,因此

[[UIApplication sharedApplication] cancelAllLocalNotifications];

不会为我工作。我知道我可以使用

[[UIApplication sharedApplication] cancelLocalNotification:UILocalNotification];

但是如何从给定的NSIndexPath获取UILocalNotification?

感谢。

1 个答案:

答案 0 :(得分:2)

您可以从@property(nonatomic,copy) NSArray *scheduledLocalNotifications

获取一系列预定通知

根据您选择的索引编号获取您想要的那个,然后将UILocalNotification *传递给- (void)cancelLocalNotification:(UILocalNotification *)notification