### iOS10 UserNotification

UserNotification类介绍

  • UNNotificationCenter:通知管理中心,单例,通知的注册,接收通知后的回调处理等,是UserNotification框架的核心。

  • UNNotification:通知对象,其中封装了通知请求。

  • UNNotificationSettings:通知相关设置。

  • UNNotificationCategory:通知模板。

  • UNNotificationAction:用于定义通知模板中的用户交互行为。

  • UNNotificationRequest:注册通知请求,其中定义了通知的内容和触发方式。

  • UNNotificationResponse:接收到通知后的回执。

  • UNNotificationContent:通知的具体内容。

  • UNNotificationTrigger:通知的触发器,由其子类具体定义。

  • UNNotificationAttachment:通知附件类,为通知内容添加媒体附件。

  • UNNotificationSound:定义通知音效。

  • UNPushNotificationTrigger:远程通知的触发器,UNNotificationTrigger子类。

  • UNTimeInervalNotificationTrigger:计时通知的触发器,UNNotificationTrigger子类。

  • UNCalendarNotificationTrigger:周期通知的触发器,UNNotificationTrigger子类。

  • UNLocationNotificationTrigger:地域通知的触发器,UNNotificationTrigger子类。

  • UNNotificationCenterDelegate:协议,其中方法用于监听通知状态。

权限申请

权限申请代码

    [[UNUserNotificationCenter currentNotificationCenter] requestAuthorizationWithOptions:UNAuthorizationOptionBadge|UNAuthorizationOptionSound|UNAuthorizationOptionAlert|UNAuthorizationOptionCarPlay completionHandler:^(BOOL granted, NSError * _Nullable error) {
        if (granted) {
            //设置代理
            [UNUserNotificationCenter currentNotificationCenter].delegate = self;
        }
    }];

requestAuthorizationWithOptions权限参数介绍

typedef NS_OPTIONS(NSUInteger, UNAuthorizationOptions) {
    UNAuthorizationOptionBadge   = (1 << 0), //数字
    UNAuthorizationOptionSound   = (1 << 1), //声音
    UNAuthorizationOptionAlert   = (1 << 2), //弹框
    UNAuthorizationOptionCarPlay = (1 << 3), //车载设备
} __IOS_AVAILABLE(10.0) __TVOS_AVAILABLE(10.0) __WATCHOS_AVAILABLE(3.0);

创建通知

创建通知代码

    //创建通知
    //通知可变内容类
    UNMutableNotificationContent *content = [UNMutableNotificationContent new];
    content.badge = @2;
    //通知内容
    content.body = @"This is iOS10 new Notification Body";
    //默认通知提示音
    content.sound = [UNNotificationSound defaultSound];
    //副标题 - 新特性
    content.subtitle = @"this is subTitle";
    //标题
    content.title = @"this is title";
    //启动图片 - 新特性
    content.launchImageName = @"launchImg";
    //设置延迟执行
    UNTimeIntervalNotificationTrigger *trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:10 repeats:NO];
    //创建Request
    UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:@"requestIdentifier" content:content trigger:trigger];
    [[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
        NSLog(@"addNotificationCompletionHandler");
    }];

通知触发器

UNTimeIntervalNotificationTrigger 计时触发器(多少秒之后触发)


Paste_Image.png

UNCalendarNotificationTrigger 日历触发器


Paste_Image.png

UNLocationNotificationTrigger 定位触发器


Paste_Image.png

通知Attachment附件

附件分为以下几种:

  1. 图片
  2. 音频
  3. 视频

需要使用到UNNotificationAttachment类:下面是示例代码

    //创建一个attachment(图片附件)
    UNNotificationAttachment *attach = [UNNotificationAttachment attachmentWithIdentifier:@"attachment" URL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"example" ofType:@"png"]] options:nil error:nil];
    //创建通知
    UNMutableNotificationContent *content = [UNMutableNotificationContent new];
    //设置附件数组
    content.attachments = @[attach];
    content.badge = @2;
    //通知内容
    content.body = @"This is iOS10 new Notification Body";
    //默认通知提示音
    content.sound = [UNNotificationSound defaultSound];
    //副标题 - 新特性
    content.subtitle = @"this is subTitle";
    //标题
    content.title = @"this is title";
    //启动图片 - 新特性
    content.launchImageName = @"launchImg";
    //设置延迟执行
    UNTimeIntervalNotificationTrigger *trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:10 repeats:NO];
    //创建Request
    UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:@"requestIdentifier" content:content trigger:trigger];
    [[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
        NSLog(@"addNotificationCompletionHandler");
    }];
Paste_Image.png
Paste_Image.png
Paste_Image.png

注意大小要求

Paste_Image.png

附件options对应的Key

//手动设置附件类型,不设置则自动推断
extern NSString * const UNNotificationAttachmentOptionsTypeHintKey __IOS_AVAILABLE(10.0) __WATCHOS_AVAILABLE(3.0);

//是否隐藏缩略图 NSNumber 0或1 默认不隐藏
extern NSString * const UNNotificationAttachmentOptionsThumbnailHiddenKey __IOS_AVAILABLE(10.0) __WATCHOS_AVAILABLE(3.0);

//是否对缩略图进行裁剪 需要则使用CGRectCreateDictionaryRepresentation(CGRect)
extern NSString * const UNNotificationAttachmentOptionsThumbnailClippingRectKey __IOS_AVAILABLE(10.0) __WATCHOS_AVAILABLE(3.0);

//将视频中的某一帧作为缩略图 NSNumber为时间
extern NSString * const UNNotificationAttachmentOptionsThumbnailTimeKey __IOS_AVAILABLE(10.0) __WATCHOS_AVAILABLE(3.0);

定义通知模板

可输入的通知模板,通常应用于通讯类App回复信息

    //屏幕解锁状态下
//    UNNotificationActionOptionAuthenticationRequired = (1 << 0)
    //破坏性
//    UNNotificationActionOptionDestructive = (1 << 1),
    //允许后台启动app
//    UNNotificationActionOptionForeground = (1 << 2),
    //无
//    UNNotificationActionOptionNone
    UNTextInputNotificationAction *textAction = [UNTextInputNotificationAction actionWithIdentifier:@"textaction" title:@"回复" options:UNNotificationActionOptionAuthenticationRequired textInputButtonTitle:@"确认" textInputPlaceholder:@"请输入回复内容"];
    //无
//    UNNotificationCategoryOptionNone = (0),
    //代理方法能接收到dismiss action
//    UNNotificationCategoryOptionCustomDismissAction = (1 << 0),
    //车载
//    UNNotificationCategoryOptionAllowInCarPlay = (2 << 0),
    UNNotificationCategory *category = [UNNotificationCategory categoryWithIdentifier:@"categoryidentify" actions:@[textAction] intentIdentifiers:@[] options:UNNotificationCategoryOptionCustomDismissAction];
    ```
    UNMutableNotificationContent *content = [UNMutableNotificationContent new];
    //这里设置要与UNNotificationCategory中一样
    content.categoryIdentifier = @"categoryidentify";
    content.badge = @2;
    //通知内容
    content.body = @"This is iOS10 new Notification Body";
    //默认通知提示音
    content.sound = [UNNotificationSound defaultSound];
    //副标题 - 新特性
    content.subtitle = @"this is subTitle";
    //标题
    content.title = @"this is title";
    //启动图片 - 新特性
    content.launchImageName = @"launchImg";
    //设置延迟执行
    UNTimeIntervalNotificationTrigger *trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:10 repeats:NO];
    //创建Request
    UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:@"requestIdentifier" content:content trigger:trigger];
    [[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
        NSLog(@"addNotificationCompletionHandler");
    }];


----------

>按钮通知模板
UNNotificationAction * action = [UNNotificationAction actionWithIdentifier:@"action" title:@"按钮标题1" options:UNNotificationActionOptionNone];
UNNotificationAction * action2 = [UNNotificationAction actionWithIdentifier:@"action" title:@"按钮标题2" options:UNNotificationActionOptionNone];
UNNotificationAction * action3 = [UNNotificationAction actionWithIdentifier:@"action" title:@"按钮标题3" options:UNNotificationActionOptionNone];
UNNotificationAction * action4 = [UNNotificationAction actionWithIdentifier:@"action" title:@"按钮标题4" options:UNNotificationActionOptionNone];
UNNotificationCategory * category = [UNNotificationCategory categoryWithIdentifier:@"myNotificationCategoryBtn" actions:@[action,action2,action3,action4] intentIdentifiers:@[] options:UNNotificationCategoryOptionCustomDismissAction];
UNMutableNotificationContent * content = [UNMutableNotificationContent new];
content.badge = @1;
content.body = @"这是iOS10的新通知内容:普通的iOS通知";
//默认的通知提示音
content.sound = [UNNotificationSound defaultSound];
content.subtitle = @"这里是副标题";
content.title = @"这里是通知的标题";
content.categoryIdentifier = @"myNotificationCategoryBtn";
//设置5S之后执行
UNTimeIntervalNotificationTrigger * trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:5 repeats:NO];
UNNotificationRequest * request = [UNNotificationRequest requestWithIdentifier:@"NotificationDefault" content:content trigger:trigger];
[[UNUserNotificationCenter currentNotificationCenter] setNotificationCategories:[NSSet setWithObjects:category, nil]];
[[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
}];


#通知回调处理
UserNotification的回调处理是通过UNUserNotificationCenterDelegate协议方法来实现的,我们成为通知代理并实现下面两个方法:

pragma mark - UNUserNotificationCenterDelegate

//当App在前台活跃时,通知将要弹出时会调用(后台不会调用)
//设置completionHandler的UNNotificationPresentationOptions可以使App在前台活跃状态下依然弹出通知消息
//UNNotificationPresentationOptionBadge = (1 << 0), 修改badge
//UNNotificationPresentationOptionSound = (1 << 1), 通知音效
//UNNotificationPresentationOptionAlert = (1 << 2), 通知框
//UNNotificationPresentationOptionNone 啥也不干

  • (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler{

}

//当接收到通知后,用户点击通知之后就会调用,(无论是前台还是后台,只要点击就会调用)

  • (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler{

}


#UNErrorCode - 错误代码介绍

//通知不被允许
UNErrorCodeNotificationsNotAllowed = 1,
//附件无效URL
UNErrorCodeAttachmentInvalidURL = 100,
//附件类型不被识别
UNErrorCodeAttachmentUnrecognizedType,
//附件大小无效
UNErrorCodeAttachmentInvalidFileSize,
//附件数据错误
UNErrorCodeAttachmentNotInDataStore,
//附件数据存储失败
UNErrorCodeAttachmentMoveIntoDataStoreFailed,
//附件错误
UNErrorCodeAttachmentCorrupt,
//通知日期无效
UNErrorCodeNotificationInvalidNoDate = 1400,
//通知内容无效
UNErrorCodeNotificationInvalidNoContent,

#UNNotification
>注意是readOnly只读
![Paste_Image.png](http://upload-images.jianshu.io/upload_images/1212794-22a432a70d8355b3.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

// 通知触发具体时间
*date;
// 通知请求对象
*request


#UNNotificationSetting
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,189评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,577评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,857评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,703评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,705评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,620评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,995评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,656评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,898评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,639评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,720评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,395评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,982评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,953评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,195评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,907评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,472评论 2 342

推荐阅读更多精彩内容