最近在做一个电商的APP,话说今年电商很火啊。 用到了本地通知,特此整理一下添加一个本地通知到系统中,代码如下:// 初始化本地通知对象UILocalNotification *notification = [[UILocalNotification alloc] init];if (notific...
分类:
移动开发 时间:
2015-06-08 21:12:37
阅读次数:
155
注:按Home键让App进入后台运行时,方可查看通知。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after appl...
分类:
移动开发 时间:
2015-06-05 17:44:31
阅读次数:
167
1、创建本地通知 UILocalNotification *local = [[UILocalNotification alloc] init]; 2、设置通知显示的时间 local.fireDate = [NSDate date]; 3、设置默认时区 local.timeZone = [...
分类:
移动开发 时间:
2015-05-30 10:41:05
阅读次数:
168
1、创建本地通知
UILocalNotification *local = [[UILocalNotification alloc] init];
2、设置通知显示的时间
local.fireDate = [NSDate date];
3、设置默认时区
local.timeZone = [NSTimeZone defaultTimeZone];
4、设置提示内容
loc...
分类:
移动开发 时间:
2015-05-25 10:12:12
阅读次数:
162
// 执行通知一定要退出应用或挂起应用(进入后台)才能收到通知。1、在iOS8及其以后版本中使用本地消息需要先获得用户的许可,否则无法成功注册本地消息。因此,我们将询问用户许可的代码片段添加到了app启动后的入口方法中(AppDelegate中的didFinishLaunchingWithOptio...
分类:
其他好文 时间:
2015-05-20 23:46:06
阅读次数:
178
// 执行通知一定要退出应用或挂起应用(进入后台)才能收到通知。// 创建本地通知UILocalNotification *notification = [[UILocalNotification alloc] init];// 通知触发时间// 5秒钟之后触发notification.fireDa...
分类:
其他好文 时间:
2015-05-20 18:15:11
阅读次数:
104
//发送通知UILocalNotification*notification=[[UILocalNotificationalloc]init];if(notification!=nil){NSDate*now=[NSDatenew];notification.fireDate=[nowdateByA...
分类:
其他好文 时间:
2015-05-13 11:56:57
阅读次数:
113
http://www.cnblogs.com/kenshincui/p/4168532.html本地通知UILocalNotification *local=[[UILocalNotification alloc]init]; local.fireDate=[NSDate dateWithTime....
分类:
移动开发 时间:
2015-04-30 15:59:08
阅读次数:
134
1 第一步:创建本地推送 2 // 创建一个本地推送 3 UILocalNotification *notification = [[[UILocalNotification alloc] init] autorelease]; 4 //设置10秒之后 5 NSDate *pushDate = [....
分类:
其他好文 时间:
2015-04-27 13:00:51
阅读次数:
128
UILocalNotification* localNotification = [[UILocalNotification alloc]init]; localNotification.alertBody = @"this is a local notification"; localNot...
分类:
移动开发 时间:
2015-04-20 12:59:12
阅读次数:
183