iOS中 本地通知/本地通知详解 韩俊强的博客
布局如下:(重点讲本地通知)
iOS开发者交流QQ群: 446310206
每日更新关注:http://weibo.com/hanjunqiang
新浪微博
Notification是智能手机应用编程中非常常用的一种传递信息的机制,而且可以非常好的节省资源,不用消耗资源来不停地检查信息状态(Pooling),在iOS下应用分为两种不同的Notification种类,本地和远程。本地的Notification由iOS下NotificationManager统一管理,只需要将封装好的本地Notification对象加入到系统Notification管理机制队列中,系统会在指定的时间激发将本地Notification,应用只需设计好处理Notification的方法就完成了整个Notification流程了。
本地Notification所使用的对象是UILocalNotification,UILocalNotification的属性涵盖了所有处理Notification需要的内容。UILocalNotification的属性有fireDate、timeZone、repeatInterval、repeatCalendar、alertBody、
alertAction、hasAction、alertLaunchImage、applicationIconBadgeNumber、 soundName和userInfo。
每日更新关注:http://weibo.com/hanjunqiang
新浪微博
1.首先要明白模拟器和真机的区别:模拟器不会有音频提示,另外就是没有检测允许接受通知,所以我补充一下几点:
1.添加监测通知:
if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)]){
[application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil]];
}
上代码:
#import "ViewController.h"
#import "DetailViewController.h"
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UIButton *schedule;
@property (weak, nonatomic) IBOutlet UIButton *unSchedule;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
// 调度通知
- (IBAction)schedule:(UIButton *)sender {
// 1.创建通知
UILocalNotification *ln = [[UILocalNotification alloc]init];
if (ln) {
// 设置时区
ln.timeZone = [NSTimeZone defaultTimeZone];
// 通知第一次发出的时间
ln.fireDate = [[NSDate date]dateByAddingTimeInterval:5];
// 2.设置通知属性
ln.soundName = @"click.wav"; // 音效文件名
// 通知的具体内容
ln.alertBody = @"重大新闻:小韩哥的博客又更新了,赶快进来看看吧!....";
// 锁屏界面显示的小标题,完整标题:(“滑动来”+小标题)
ln.alertAction = @"查看新闻吧";
// 设置app图标数字
ln.applicationIconBadgeNumber = 10;
// 设置app的额外信息
ln.userInfo = @{
@"icon":@"text.png",
@"title":@"重大新闻",
@"time":@"2016-02-28",
@"body":@"重大新闻:小韩哥的博客又更新了,赶快进来看看吧!"
};
// 设置重启图片
ln.alertLaunchImage = @"101339g76j7j9t2zgzdvkj.jpg";
// 设置重复发出通知的时间间隔
// ln.repeatInterval = NSCalendarUnitMinute;
// 3.调度通知(启动任务,在规定的时间发出通知)
[[UIApplication sharedApplication]scheduleLocalNotification:ln];
// 直接发出通知没意义
// [[UIApplication sharedApplication]presentLocalNotificationNow:ln];
}
}
- (IBAction)noSchedule:(UIButton *)sender
{
// [[UIApplication sharedApplication]cancelAllLocalNotifications];
// 已经发出且过期的通知会从数组里自动移除
NSArray *notes = [UIApplication sharedApplication].scheduledLocalNotifications;
NSLog(@"%@",notes);
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(UILocalNotification *)note
{
DetailViewController *detailVC = segue.destinationViewController;
detailVC.userInfo = note.userInfo;
}
@end
2.通知详情页面设置基本属性:
每日更新关注:http://weibo.com/hanjunqiang
新浪微博
.h
#import <UIKit/UIKit.h>
@interface DetailViewController : UIViewController
@property (nonatomic, strong) NSDictionary *userInfo;
@end
.m
#import "DetailViewController.h"
@interface DetailViewController ()
@property (weak, nonatomic) IBOutlet UILabel *userInfoContent;
@end
@implementation DetailViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.userInfoContent.text = self.userInfo[@"body"];
}
- (void)setUserInfo:(NSDictionary *)userInfo
{
_userInfo = userInfo;
}
@end
3.didFinishLaunchingWithOptions 实时监测:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
//注册本地通知
if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)]){
[application registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil]];
}
// NSLog(@"-----didFinishLaunchingWithOptions---");
UILabel *label = [[UILabel alloc]init];
label.frame = CGRectMake(0, 64, 320, 100);
label.backgroundColor = [UIColor redColor];
label.font = [UIFont systemFontOfSize:11];
label.numberOfLines = 0;
label.textColor = [UIColor whiteColor];
label.text = [launchOptions description];
[[[self.window.rootViewController.childViewControllers firstObject] view]addSubview:label];
UILocalNotification *note = launchOptions[UIApplicationLaunchOptionsURLKey];
if (note) {
label.text = @"点击本地通知启动的程序";
}else{
label.text = @"直接点击app图标启动的程序";
}
self.label = label;
return YES;
}
/**
* 当用户点击本地通知进入app的时候调用(app当时并没有被关闭)
* 若app已关闭不会被调用此方法
*/
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
self.label.text = @"点击通知再次回到前台";
ViewController *homeVC = [self.window.rootViewController.childViewControllers firstObject];
// [homeVC performSegueWithIdentifier:@"toHome" sender:notification];
[homeVC performSegueWithIdentifier:@"toHome" sender:notification];
}
三种情况展示:(重要)
每日更新关注:http://weibo.com/hanjunqiang
新浪微博
1.程序运行在后台
每日更新关注:http://weibo.com/hanjunqiang
新浪微博
Demo下载地址Github: https://github.com/XiaoHanGe/LocalNotification
iOS中 本地通知/本地通知详解 韩俊强的博客的更多相关文章
- iOS中 扫描二维码/生成二维码详解 韩俊强的博客
最近大家总是问我有没有关于二维码的demo,为了满足大家的需求,特此研究了一番,希望能帮到大家! 每日更新关注:http://weibo.com/hanjunqiang 新浪微博 指示根视图: se ...
- iOS中 HTTP/Socket/TCP/IP通信协议详解 韩俊强的博客
每日更新关注:http://weibo.com/hanjunqiang 新浪微博 简单介绍: // OSI(开放式系统互联), 由ISO(国际化标准组织)制定 // 1. 应用层 // 2. 表示层 ...
- iOS中 最新微信支付/最全的微信支付教程详解 韩俊强的博客
每日更新关注:http://weibo.com/hanjunqiang 新浪微博! 亲们, 首先让我们来看一下微信支付的流程吧. 1. 注册微信开放平台,创建应用获取appid,appSecret, ...
- iOS中 蓝牙2.0详解/ios蓝牙设备详解 韩俊强的博客
每日更新关注:http://weibo.com/hanjunqiang 新浪微博 整体布局如下: 程序结构如右图: 每日更新关注:http://weibo.com/hanjunqiang ...
- iOS中 CoreGraphics快速绘图(详解) 韩俊强的博客
每日更新关注:http://weibo.com/hanjunqiang 新浪微博 第一步:先科普一下基础知识: Core Graphics是基于C的API,可以用于一切绘图操作 Core Graph ...
- iOS中 语音识别功能/语音转文字教程详解 韩俊强的博客
每日更新关注:http://weibo.com/hanjunqiang 新浪微博 原文地址:http://blog.csdn.net/qq_31810357/article/details/5111 ...
- iOS中 断点下载详解 韩俊强的博客
布局如下: 基本拖拉属性: #import "ViewController.h" #import "AFNetworking.h" @interface Vie ...
- iOS中 项目开发易错知识点总结 韩俊强的博客
每日更新关注:http://weibo.com/hanjunqiang 新浪微博! 点击return取消textView 的响应者 - (BOOL)textFieldShouldReturn:(UI ...
- iOS中 支付宝钱包具体解释/第三方支付 韩俊强的博客
每日更新关注:http://weibo.com/hanjunqiang 新浪微博! iOS开发人员交流QQ群: 446310206 一.在app中成功完毕支付宝支付的过程 1.申请支付宝钱包.參考网 ...
随机推荐
- Chinese-Text-Classification,用卷积神经网络基于 Tensorflow 实现的中文文本分类。
用卷积神经网络基于 Tensorflow 实现的中文文本分类 项目地址: https://github.com/fendouai/Chinese-Text-Classification 欢迎提问:ht ...
- Vegas Pro 15软件界面对比
大家都知道Vegas是一款专业的视频制作软件,而新版的VEGAS Pro 15更是专业性十足.好了,废话不多说,接下来小编就带大家具体的看一下Vegas 15界面都有哪些更新吧! 一.软件图标 图1: ...
- SpringMVC注解@Component、@Repository、@Service、@Controller区别
SpringMVC中四个基本注解: @Component.@Repository @Service.@Controller 看字面含义,很容易却别出其中三个: @Controller 控制层, ...
- south 命令学习
south 命令学习 概述 在django某个版本之前,django自身提供一个创建数据库的命令-syncdb,它会根据model来创建相应的表,但是这个命令不好的地方在于,如果想要对model进行更 ...
- ng-book札记——表单
Angular表单的基本对象为FormControl与FormGroup. FormControl FormControl代表单个input表单字段(field),即Angular表单的最小单元. F ...
- CentOS 7安装Python3.5,并与Python2.7兼容并存
CentOS7默认安装了python2.7.5,当需要使用python3的时候,可以手动下载Python源码后编译安装.1.安装python3.5可能使用的依赖1 yum install openss ...
- Linux下MySQL 数据库的基本操作
1. 创建数据库相关命令: 首先,下载MySQL相关软件包:aptitude install mysql-server/mysql-client MySQL中的root用户类似于Linux下的root ...
- Android Design Support Library使用详解——TextInputLayout与TextInputEditText
TextInputLayout 在谷歌的Material Design中,文本输入是这样表现的:当用户点击输入框想要输入文字时,如果输入框是空的,那么它的提示文字(hint)就会变小并且同时移动到输入 ...
- Dynamics CRM2016 The value of field on record of type entity is outside the valid range问题的解决方法
今天在用web api创建一条记录时报了个标题里的错,咋看这错说的很明白了,属性字段的值超范围了,但咱们看下具体的问题 请求url是这样的http://xx/api/data/v8.0/new_rec ...
- sublime text 2 解决错误 [Decode error - output not utf-8]
以win 10 为例, 找到文件C:\Users\xxzx\AppData\Roaming\Sublime Text 2\Packages\Python\Python.sublime-build 添加 ...