iOS8中 UILocalNotification 和 UIRemoteNotification 使用注意
先说一个关于UILocalNotification的知识点,容易被忘记:
Each app on a device is limited to 64 scheduled local notifications. The system discards scheduled notifications in excess of this limit, keeping only the 64 notifications that will fire the soonest. Recurring notifications are treated as a single notification.
上面说的是,local notification 最多64个,重复触发的notification被当成一个。
再来一个注意点:ios7 和以上版本
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler: (void (^)(UIBackgroundFetchResult))completionHandler
如果这个实现了这个函数,那么下面这个函数
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
不会被调用!所以只写上面那个函数就行了。
在ios8中,有了关于本地通知和远程通知的新改动,下面来看看。
先看一段网上抄来的代码
UIMutableUserNotificationAction *notificationAction1 = [[UIMutableUserNotificationAction alloc] init];
notificationAction1.identifier = @"Accept";
notificationAction1.title = @"Accept";
notificationAction1.activationMode = UIUserNotificationActivationModeBackground;
notificationAction1.destructive = NO;
notificationAction1.authenticationRequired = NO; UIMutableUserNotificationAction *notificationAction2 = [[UIMutableUserNotificationAction alloc] init];
notificationAction2.identifier = @"Reject";
notificationAction2.title = @"Reject";
notificationAction2.activationMode = UIUserNotificationActivationModeBackground;
notificationAction2.destructive = YES;
notificationAction2.authenticationRequired = YES; UIMutableUserNotificationAction *notificationAction3 = [[UIMutableUserNotificationAction alloc] init];
notificationAction3.identifier = @"Reply";
notificationAction3.title = @"Reply";
notificationAction3.activationMode = UIUserNotificationActivationModeForeground;
notificationAction3.destructive = NO;
notificationAction3.authenticationRequired = YES; UIMutableUserNotificationCategory *notificationCategory = [[UIMutableUserNotificationCategory alloc] init];
notificationCategory.identifier = @"Email"; // [notificationCategory setActions:@[notificationAction3] forContext:UIUserNotificationActionContextDefault];
[notificationCategory setActions:@[notificationAction1] forContext:UIUserNotificationActionContextMinimal]; NSSet *categories = [NSSet setWithObjects:notificationCategory, nil]; UIUserNotificationType notificationType = UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert;
UIUserNotificationSettings *notificationSettings = [UIUserNotificationSettings settingsForTypes:notificationType categories:categories]; [[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings]; UILocalNotification* localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:];
localNotification.alertBody = @"Testing";
localNotification.category = @"Email"; // Same as category identifier
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
这是一段发送本地通知的代码,其中涉及到了这次更新的几个类,UIMutableUserNotificationAction,UIMutableUserNotificationCategory,UIUserNotificationSettings 我们需要依次生成这几个对象,最后使用
[[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];注意,如果注册了多次,那么以最后一次为准。把程序的通知设定注册到系统中去。
如果是程序第一次进行注册,那么系统会弹出对话框,索取notification权限,对话框内容和notificationSettings的设置无关,都是下图中的内容

如果点击不允许,那么在settings中notification被这是成关闭的,如下图:

否则,notification就会被打开。 如果UIUserNotificationType notificationType = UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert; 那么settings中的设定项目如下图:

如果UIUserNotificationType notificationType = UIUserNotificationTypeAlert;那么settings中的设定项目如下图:

注意,这个设定中根本不会出现UIUserNotificationTypeBadge | UIUserNotificationTypeSound 相关的设定 有趣的地方来了,如果一开始注册的设定是
UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert,而后来又注册了
UIUserNotificationTypeAlert,那么settings中的图就会从 左边的变成右边的!settings中的设定会根据代码动态改变!


如果不使用UIUserNotificationTypeAlert,那么不会弹出notification,对应的提醒内容,可以在notification center或者锁屏界面查看。 上面有2个参数UIUserNotificationActionContextDefault 和 UIUserNotificationActionContextMinimal 这里需要说明一下
官方说明如下
UIUserNotificationActionContextDefault
The default context for displaying the alert. In this context, the full UI is displayed for the notification’s alert. You may specify up to four custom actions in this context. UIUserNotificationActionContextMinimal
A notification where space is minimal. In this context, a minimal UI is displayed for the notification’s alert. You may specify up to two custom actions in this context.
那么什么是Minimal 和default context 呢,见下图

期中,Banners就是UIUserNotificationActionContextMinimal 而 alerts 就是 UIUserNotificationActionContextDefault!!
如果你使用了UIUserNotificationActionContextDefault,那么有以下的效果图


其中的accept,reject,reply是代码指定的,open是系统提供的,效果如同利用banners样式时点击通知内容本身,调用的是didReceiveLocalNotification 或 didReceiveRemoteNotification。
如果代码中不用UIUserNotificationActionContextMinimal,而在系统设置中用了banners样式,那么会使用UIUserNotificationActionContextDefault的多个action中的最后一个,在banners样式中显示!
注意,当应用程序在前台时,通知到来,系统不会为程序弹出alert(共有3中弹出方式,用户可以在settings 中进行设定),而是会调用相应的didReceiveLocalNotification 和 didReceiveRemoteNotification 这2个代理函数,把通知内容交给程序自身处理。而当程序不在前台时,系统才会为用户弹出alert,提示用户进行相应操作。 另外,点击通知中心的通知时,有2中情况:
一种是程序已经启动了而且不在前台,这时,也会调用didReceiveLocalNotification,那么如何和系统在前台时调用的didReceiveLocalNotification区别呢?(为什么要区别:一般点击notification center后进入程序不弹出alert,而程序在前台时收到通知要弹出alert,这是苹果程序的一般做法)答案是:可以通过UIApplication.sharedApplication().applicationState来区别,当从notification center进来,调用didReceiveLocalNotification时 程序的状态是UIApplicationState.Inactive。
另一种状态是程序没有系统,这时会调用didFinishLaunchingWithOptions函数,把notification通过参数传入,不会调用
didReceiveLocalNotification 了。
。
这里UIMutableUserNotificationAction就代表了一个操作,在界面上的表示形式就是一个按钮,当点击按钮时,就会调用
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification completionHandler:(void (^)())completionHandler 或者 - (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo completionHandler:(void(^)())completionHandler NS_AVAILABLE_IOS(8_0);
不会再调用 didReceiveLocalNotification 或 didReceiveRemoteNotification 这2个代理函数了。
另外,在UIMutableUserNotificationAction 中有一个属性,activationMode,当它是UIUserNotificationActivationModeBackground时,系统会选在在后台调用handleActionWithIdentifier函数,并执行里面的代码,不启动程序界面。
,执行的时间是有限的,我测试的是30s,如果超过30s你的程序还在后台执行,那么系统会终止调你的程序,并抛出异常。异常如下
<Warning>: <BKNewProcess: 0x17e685f0; -.bbbb; pid: ; hostpid: -> has active assertions beyond permitted time:
{(
<BKProcessAssertion: 0x17d6b4f0> id: -2B9D290F-7F21-4DCB-955B-9D80DE693382 name: Notification action process: <BKNewProcess: 0x17e685f0; -.bbbb; pid: ; hostpid: -> permittedBackgroundDuration: 30.000000 reason: notificationAction owner pid: preventSuspend preventThrottleDownUI preventIdleSleep preventSuspendOnSleep ,
<BKProcessAssertion: 0x17d6de50> id: -707C3B54-51BC-47DA-B779-B11888416FE4 name: Deliver Message process: <BKNewProcess: 0x17e685f0; -.bbbb; pid: ; hostpid: -> permittedBackgroundDuration: 10.000000 reason: suspend owner pid: preventSuspend preventThrottleDownCPU preventThrottleDownUI preventSuspendOnSleep
)}
注意,虽然你设置了action,但是如果你没有点击action按钮,而是通过点击通知内容本身出发消息,那么系统扔会像ios7一样,调用didReceiveLocalNotification 或 didReceiveRemoteNotification 这2个代理函数(可以自己体验一下ios8通知的操作方法))。
如果程序没有启动,用户点击action按钮后,系统会先调用didFinishLaunchingWithOptions启动程序,再调用
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification completionHandler:(void (^)())completionHandler 或者 - (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo completionHandler:(void(^)())completionHandler NS_AVAILABLE_IOS(8_0);
来处理action,这一点和以前点击通知内容本身的效果不一样,点击内容本身时,是不会调用didReceiveLocalNotification函数的,仅仅调用didFinishLaunchingWithOptions。我感觉这是因为action处理比较复杂,无法再直接附加在didFinishLaunchingWithOptions当做参数传入了。
iOS8中 UILocalNotification 和 UIRemoteNotification 使用注意的更多相关文章
- iOS8 UILocalNotification 和 UIRemoteNotification 使用注意 草稿,正在整理中。。。。
先说一个关于UILocalNotification的知识点,容易被忘记: Each app on a device is limited to 64 scheduled local notificat ...
- iOS8中定位服务的变化(CLLocationManager协议方法不响应,无法回掉GPS方法,不出现获取权限提示)
最近在写一个LBS的项目的时候,因为考虑到适配iOS8,就将项目迁移到Xcode6.0.1上,出现了不能正常获取定位服务权限的问题. self.manger = [[CLLocationManager ...
- iOS8中使用CoreLocation定位[转]
本文转自:http://blog.devzeng.com/blog/ios8-corelocation-framework.html iOS8以前使用CoreLocation定位 1.首先定义一个全局 ...
- iOS 学习笔记 九 (2015.04.02)IOS8中使用UIAlertController创建警告窗口
1.IOS8中使用UIAlertController创建警告窗口 #pragma mark - 只能在IOS8中使用的,警告窗口- (void)showOkayCancelAlert{ NSSt ...
- ios8中的UIScreen
let orientation: UIInterfaceOrientation = UIApplication.sharedApplication().statusBarOrientation pri ...
- iOS8中添加的extensions总结(一)——今日扩展
通知栏中的今日扩展 分享扩展 Action扩展 图片编辑扩展 文件管理扩展 第三方键盘扩展 注:此教程来源于http://www.raywenderlich.com的<iOS8 by Tutor ...
- ios8中百度推送接收不到
ios8中百度推送接收类型会有所改变: //消息推送注冊 if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) { ...
- 初探 iOS8 中的 Size Class
初探 iOS8 中的 Size Class 分类: Ios2014-09-16 13:11 4323人阅读 评论(1) 收藏 举报 目录(?)[+] 初探 iOS8 中的 Size Class ...
- iOS8中的动态文本
原文链接 : Swift Programming 101: Mastering Dynamic Type in iOS 8 原文作者 : Kevin McNeish Apple声称鼓励第三方App能够 ...
随机推荐
- (转)JVM——自定义类加载器
背景:为什么要自定义,如何自定义,实现过程 转载:http://blog.csdn.net/SEU_Calvin/article/details/52315125 0. 为什么需要自定义类加载器 网上 ...
- 收藏:Non-direct与direct ByteBuffer区别
相信大家都知道,但是两者的区别在什么地方呢?在不同的环境下采用哪种类型的ByteBuffer会更有效率呢?先解释一下两者的区别:Non-directByteBuffer内存是分配在堆上的,直接由Jav ...
- 收藏:SQL重复记录查询 .
来自:http://blog.csdn.net/chinmo/article/details/2184020 1.查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select ...
- 第三节,TensorFlow 使用CNN实现手写数字识别(卷积函数tf.nn.convd介绍)
上一节,我们已经讲解了使用全连接网络实现手写数字识别,其正确率大概能达到98%,这一节我们使用卷积神经网络来实现手写数字识别, 其准确率可以超过99%,程序主要包括以下几块内容 [1]: 导入数据,即 ...
- 【题解】亚瑟王 HNOI 2015 BZOJ 4008 概率 期望 动态规划
传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=4008 一道不简单的概率和期望dp题 根据期望的线性性质,容易想到,可以算出每张卡的期望伤害, ...
- H5 手机拨打电话与转到邮箱的标签属性
<a href="tel:电话号码"></a> <a href-"mailto:邮箱"></a> 说明:第一个标 ...
- Swing的特性
1.Swing组件的多样化 2.MVC(model-view-controller)体系结构 3.可存取性支持 4.支持键盘代替鼠标的操作 5.设置边框 6.使用图标 ———————————————— ...
- 2018acm-icpc西安邀请赛后记
第一次参加icpc的邀请赛,有一点小激动,深知大一弱队实力弱,赛前给队友的目标就是拿块铜,不打铁. 热身赛因为没有用过pc^2,codeblocks又用不习惯的原因,开始调工程调了很久,差一点拿到A题 ...
- linux useradd 的一个用法
执行命令如下: [root@hds01 home]# useradd -s /sbin/nologin -M -g wwwgroup nginx -s表示指定用户所用的shell,此处为/sbin/n ...
- SQL2008.sa'登录失败(错误18456)
其实不仅仅是2008,高版本的也有这个问题.网上一大堆解决这个问题的方法,无非就是启动这个,启用那个.这里我讲些不一样的. 当你开启了TCP协议之后,需要去Windows防火墙哪里写一下入站规则,如图 ...