在ios中,通知有两种(提醒轰炸的来源): 第一种是本地通知(UILocalNotification),这一种不需要申请推送证书,也不需要向程序注册,直接使用,这一种不是本文讨论的范围。 第二种是APNS远程推送——远程通知(UIRemoteNotification),这个不仅需要向程序注册,也.....
分类:
移动开发 时间:
2015-02-26 20:10:20
阅读次数:
325
AppDelegate.m中的代码
// AppDelegate.m中
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// 处理iOS8本地推送不能收到的问题
float sysVersion=[[UIDe...
分类:
移动开发 时间:
2015-02-26 18:37:47
阅读次数:
154
错误内容
Attempting to schedule a local notification {fire date = 2015年2月26日 星期四 中国标准时间下午3:14:57, time zone = Asia/Shanghai (GMT+8) offset 28800, repeat interval = NSCalendarUnitDay, repeat count = UILoc...
分类:
移动开发 时间:
2015-02-26 16:41:42
阅读次数:
202
Notification是智能手机应用编程中非常常用的一种传递信息的机制,而且可以非常好的节省资源,不用消耗资源来不停地检查信息状态(Pooling),在iOS下应用分为两种不同的Notification种类,本地和远程。本地的Notification由iOS下NotificationManager...
分类:
其他好文 时间:
2015-02-03 10:42:26
阅读次数:
215
【iOS开发-119】ipa打包、单元测试test、本地通知UILocalNotification...
分类:
移动开发 时间:
2015-02-02 15:56:40
阅读次数:
205
1:cmd+l 锁屏幕iOS本地通知在程序运行时不会推动消息,只有在程序进入后台时才会提醒。- (IBAction)addLocalNote { // 1.创建通知 UILocalNotification *localNote = [[UILocalNotification alloc]...
分类:
移动开发 时间:
2015-01-28 19:22:00
阅读次数:
187
1如何生成一个本地推送 UILocalNotification *localNotification = [[UILocalNotification alloc]init]; // 接收到通知时,播放的音频文件 localNotification.soundName = @"shake.wav";....
分类:
移动开发 时间:
2015-01-23 06:09:46
阅读次数:
181
1.本地通知,应用按HOME退出到后台,10秒后本地发起通知。(类似于push通知)UILocalNotification *notification=[[UILocalNotificationalloc]init];if(notification!=nil) {NSLog(@">> support...
分类:
移动开发 时间:
2015-01-16 18:33:39
阅读次数:
167
不多说 直接上代码?NSDate *now = [NSDate date]; UILocalNotification *reminderNotification = [[UILocalNotification alloc] init]; // 本地消息的时间间隔 [reminderNotificat...
分类:
移动开发 时间:
2014-11-30 15:25:17
阅读次数:
126
这两天在做一个日程提醒功能,用到了本地通知的功能,记录相关知识如下:1、本地通知的定义和使用:本地通知是UILocalNotification的实例,主要有三类属性:scheduled time,时间周期,用来指定iOS系统发送通知的日期和时间;notification type,通知类型,包括警告...
分类:
移动开发 时间:
2014-11-02 23:49:32
阅读次数:
248