我有一堆UILocalNotifications但我只想在给定的索引路径中删除某个,因此
[[UIApplication sharedApplication] cancelAllLocalNotifications];
不会为我工作。我知道我可以使用
[[UIApplication sharedApplication] cancelLocalNotification:UILocalNotification];
但是如何从给定的NSIndexPath获取UILocalNotification?
感谢。
答案 0 :(得分:2)
您可以从@property(nonatomic,copy) NSArray *scheduledLocalNotifications
根据您选择的索引编号获取您想要的那个,然后将UILocalNotification *传递给- (void)cancelLocalNotification:(UILocalNotification *)notification
。