处理本地通知
我想在 iphone sdk 3.0 中处理本地通知。有什么办法可以达到同样的目的吗?我从4.0开始就知道怎么处理了。请建议我如何在 4.0 以下的 sdk 中处理相同的问题,
谢谢, 曼朱纳特
I want to handle the local notifications in iphone sdk 3.0. Is there any way to achieve the same? I know how to handle it from 4.0 onwards. Please suggest me on how to handle the same in the sdk's below 4.0
Thanks,
Manjunath
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
UILocalNotifications 是在
iOS 4.0
中引入的,推送通知是在iOS 3.0
中引入的。如果您想为iOS 3.*
版本实现通知,您应该转到推送通知。Apple 的本地和推送通知编程指南 可能会帮助您继续前进。
UILocalNotifications are introduced in
iOS 4.0
and Push Notifications are introduced iniOS 3.0
. If you want to implement notifications for the versionsiOS 3.*
you should go to Push Notifications.Apple's Local and Push Notification Programming Guide may help you to move on further.
UILocalNotifications 在 4.0 以下的 SDK 中不可用,因此您无法在早期的 iOS SDK 中使用它们。
UILocalNotifications are not available in SDK's below 4.0, so you cannot use them in earlier iOS SDK's.