删除某个索引路径处的 UILocalnotification

发布于 2024-10-29 09:22:07 字数 345 浏览 1 评论 0原文

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

[[UIApplication sharedApplication] cancelAllLocalNotifications];

对我来说不起作用。我知道我可以使用

[[UIApplication sharedApplication] cancelLocalNotification:UILocalNotification];

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

谢谢。

I have a bunch of UILocalNotifications but I only want to delete a certain one at a given indexpath, therefor

[[UIApplication sharedApplication] cancelAllLocalNotifications];

wont work out for me. I know I can use

[[UIApplication sharedApplication] cancelLocalNotification:UILocalNotification];

but how do I get the UILocalNotification from the given NSIndexPath?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不必你懂 2024-11-05 09:22:07

您可以从以下位置获取一组预定通知: @property(nonatomic,copy) NSArray *scheduledLocalNotifications

通过您选择的索引号获取您想要的通知,然后将 UILocalNotification* 传递给 - (void)cancelLocalNotification:(UILocalNotification *)通知

You can get an array of scheduled notification from: @property(nonatomic,copy) NSArray *scheduledLocalNotifications

Get the one you want by the index number of your choosing and then pass the UILocalNotification* to - (void)cancelLocalNotification:(UILocalNotification *)notification.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文