iPhone中如何获取本地通知

发布于 2024-11-19 16:24:26 字数 37 浏览 2 评论 0原文

我想根据用户定义的时间和日期添加通知。我怎样才能做到这一点?

I want to add notification based on a user defined time and date. How can I do that?

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

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

发布评论

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

评论(3

煮茶煮酒煮时光 2024-11-26 16:24:26

您需要做的事情在

What you need to do is explained in the fine documentation.

热风软妹 2024-11-26 16:24:26
UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.alertBody = @"HI";
[notif setFireDate:DATE];// fire the notification in ten minutes
notif.alertAction = @"View";
notif.timeZone = [NSTimeZone defaultTimeZone];
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.alertBody = @"HI";
[notif setFireDate:DATE];// fire the notification in ten minutes
notif.alertAction = @"View";
notif.timeZone = [NSTimeZone defaultTimeZone];
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
陪我终i 2024-11-26 16:24:26

设置一个 UILocalNotification 并使用 UIApplicationscheduleLocalNotification: 来安排它。

Setup a UILocalNotification and schedule it with scheduleLocalNotification: of UIApplication.

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