注册本地通知
Posted
技术标签:
【中文标题】注册本地通知【英文标题】:Register for Local Notification 【发布时间】:2012-03-02 07:33:12 【问题描述】:我正在开发一个带有 phonegap 的 ios 应用程序,需要为其设置本地通知,该通知将在每个星期五和指定时间重复
还要求用户决定是否接收本地通知
【问题讨论】:
【参考方案1】:我建议您阅读以下关于我认为很有帮助的主题的文章
http://useyourloaf.com/blog/2010/7/31/adding-local-notifications-with-ios-4.html
- (void)scheduleNotification
[[UIApplication sharedApplication] cancelAllLocalNotifications];
UILocalNotification *notif = [[UILocalNotification alloc] init];
notif.fireDate = [datePicker date];
notif.timeZone = [NSTimeZone defaultTimeZone];
notif.alertBody = @"Body";
notif.alertAction = @"AlertButtonCaption";
notif.soundName = UILocalNotificationDefaultSoundName;
notif.applicationIconBadgeNumber = 1;
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
[notif release];
这只是其工作原理的基本概述,但从这里开始,您应该能够安排通知。
【讨论】:
我可以安排通知,但如何在每个星期五重复,以及如何在发送本地通知之前激活用户注册以上是关于注册本地通知的主要内容,如果未能解决你的问题,请参考以下文章