iPhone中如何获取本地通知
我想根据用户定义的时间和日期添加通知。我怎样才能做到这一点?
I want to add notification based on a user defined time and date. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想根据用户定义的时间和日期添加通知。我怎样才能做到这一点?
I want to add notification based on a user defined time and date. How can I do that?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您需要做的事情在
What you need to do is explained in the fine documentation.
设置一个
UILocalNotification
并使用UIApplication
的scheduleLocalNotification:
来安排它。Setup a
UILocalNotification
and schedule it withscheduleLocalNotification:
ofUIApplication
.