码迷,mamicode.com
首页 > 其他好文 > 详细

本地推送通知UILocalNotification

时间:2016-02-06 22:17:01      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

 1 - (IBAction)schedule {
 2     // 1.创建本地推送通知对象
 3     UILocalNotification *ln = [[UILocalNotification alloc] init];
 4     
 5     // 2.设置通知属性
 6     // 音效文件名
 7     ln.soundName = @"buyao.wav";
 8     
 9     // 通知的具体内容
10     ln.alertBody = @"重大新闻:xxxx xxxx被调查了....";
11     
12     // 锁屏界面显示的小标题("滑动来" + alertAction)
13     ln.alertAction = @"查看新闻吧";
14     
15     // 通知第一次发出的时间(5秒后发出)
16     ln.fireDate = [NSDate dateWithTimeIntervalSinceNow:5];
17     // 设置时区(跟随手机的时区)
18     ln.timeZone = [NSTimeZone defaultTimeZone];
19     
20     // 设置app图标数字
21     ln.applicationIconBadgeNumber = 5;
22     
23     // 设置通知的额外信息
24     ln.userInfo = @{
25                     @"icon" : @"test.png",
26                     @"title" : @"重大新闻",
27                     @"time" : @"2014-08-14 11:19",
28                     @"body" : @"重大新闻:答复后即可更换就肯定会尽快赶快回家的疯狂估计很快将发的"
29                     };
30     
31     // 设置启动图片
32     ln.alertLaunchImage = @"Default";
33     
34     // 设置重复发出通知的时间间隔
35 //    ln.repeatInterval = NSCalendarUnitMinute;
36     
37     // 3.调度通知(启动任务)
38     [[UIApplication sharedApplication] scheduleLocalNotification:ln];
39 }
40 
41 - (IBAction)cancel {
42     NSArray *notes = [UIApplication sharedApplication].scheduledLocalNotifications;
43     NSLog(@"%@", notes);
44 //    [[UIApplication sharedApplication] cancelAllLocalNotifications];
45 }

 

本地推送通知UILocalNotification

标签:

原文地址:http://www.cnblogs.com/PJHome/p/5184263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!