1、增加一个本地推送//设置20秒之后NSDate*date = [NSDatedateWithTimeIntervalSinceNow:20]; //chuagjian一个本地推送 UILocalNotification*noti= [[[UILocalNotificationalloc]ini....
分类:
其他好文 时间:
2015-12-03 13:37:02
阅读次数:
154
iOS下的Notification的使用Notification是智能手机应用编程中非常常用的一种传递信息的机制,而且可以非常好的节省资源,不用消耗资源来不停地检查信息状态(Pooling),在iOS下应用分为两种不同的Notification种类,本地和远程。本地的Notification由iOS...
分类:
移动开发 时间:
2015-11-20 21:43:57
阅读次数:
229
使用过的代码,直接贴上 1 UILocalNotification *notification = [[UILocalNotification alloc] init]; 2 if (notification!=nil) { 3 NSDate *now = [NSDate new]; 4...
分类:
移动开发 时间:
2015-11-20 21:30:54
阅读次数:
230
原来iOS8增加了启动授权,需要用户同意下才能注册通知。添加如下代码:- (void)RegistNotificationSettings{ float sysVersion=[[UIDevice currentDevice]systemVersion].floatValue; if (...
分类:
移动开发 时间:
2015-11-09 17:14:18
阅读次数:
273
1.在用户第一次进入进入程序时,需要对app打开推送1 if([[UIApplication sharedApplication]currentUserNotificationSettings].types == UIUserNotificationTypeNone)2 {3 ...
分类:
其他好文 时间:
2015-10-15 18:41:34
阅读次数:
189
//本地通知,只有在程序处于非运行状态下,才会发送本地通知//1.创建本地的通知对象UILocalNotification*notification=[[UILocalNotificationalloc]init];//2.设置通知触发的时间notification.fireDate=[NSDatedateWithTimeIntervalSinceNow:5];//3.设置弹出的提示内容notifica..
分类:
其他好文 时间:
2015-10-15 16:36:14
阅读次数:
243
本地通知是由本地应用触发的,它是基于时间行为的一种通知形式步骤:创建UILocalNotification。设置处理通知的时间fireDate。配置通知的内容:通知主体、通知声音、图标数字等。配置通知传递的自定义数据参数userInfo(这一步可选)。调用通知,可以使用scheduleLocalNo...
分类:
其他好文 时间:
2015-10-15 14:23:29
阅读次数:
206
//本地通知,只有程序处于非运行状态,才会出发本地通知//1.创建本地通知的对象UILocalNotification*notification=[[UILocalNotificationalloc]init];//2.设置通知触发的时间notification.fireDate=[NSDatedateWithTimeIntervalSinceNow:5];//3.设置弹出提示的内容notification...
分类:
其他好文 时间:
2015-10-15 10:10:43
阅读次数:
157
第一步:创建本地推送// 创建一个本地推送UILocalNotification *notification = [[[UILocalNotification alloc] init] autorelease];//设置10秒之后NSDate *pushDate = [NSDate dateWith...
分类:
移动开发 时间:
2015-10-12 20:53:53
阅读次数:
209
1 // 注册 发送通知的方法 2 -(void)pushNotfation{ 3 4 5 //--------------初始化本地通知 alloc init 虽然是UI控件 但继承NSObject 6 UILocalNotification *not = [[UIL...
分类:
移动开发 时间:
2015-10-11 23:02:02
阅读次数:
269