iOS 8创建交互式通知-备

iOS 8提供了一个令人兴奋的新API来创建交互式通知(interactive notifications),它能让你在你的应用之外为用户提供额外的功能。我发现网上还没有关于如何实现它的比较好的示例教程,所以我将在这篇文章里来实现一个简单的交互式通知示例,分享给大家。

为了创建交互式通知,需要iOS 8提供的3个新类:UIUserNotificationSettingsUIUserNotificationCategoryUIUserNotificationAction 以及它们的变体。

和以前简单地注册通知类型(sounds、banners、alerts)相比,现在你可以注册自定义的通知类别(categories)和动作(actions)。类别描述了应用自定义的通知类型,并且包含用户能够执行的响应动作。比如,你收到一个通知说某人在社交网上了关注了你,作为回应你可能会想要关注他或者忽略。

这里是一个非常简单的使用Objective-C编写的示例,演示如何注册一个包含两个动作的通知。


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

NSString * const NotificationCategoryIdent  = @"ACTIONABLE";

NSString * const NotificationActionOneIdent = @"ACTION_ONE";

NSString * const NotificationActionTwoIdent = @"ACTION_TWO";

 

- (void)registerForNotification {

 

    UIMutableUserNotificationAction *action1;

    action1 = [[UIMutableUserNotificationAction alloc] init];

    [action1 setActivationMode:UIUserNotificationActivationModeBackground];

    [action1 setTitle:@"Action 1"];

    [action1 setIdentifier:NotificationActionOneIdent];

    [action1 setDestructive:NO];

    [action1 setAuthenticationRequired:NO];

 

    UIMutableUserNotificationAction *action2;

    action2 = [[UIMutableUserNotificationAction alloc] init];

    [action2 setActivationMode:UIUserNotificationActivationModeBackground];

    [action2 setTitle:@"Action 2"];

    [action2 setIdentifier:NotificationActionTwoIdent];

    [action2 setDestructive:NO];

    [action2 setAuthenticationRequired:NO];

 

    UIMutableUserNotificationCategory *actionCategory;

    actionCategory = [[UIMutableUserNotificationCategory alloc] init];

    [actionCategory setIdentifier:NotificationCategoryIdent];

    [actionCategory setActions:@[action1, action2] 

                    forContext:UIUserNotificationActionContextDefault];

 

    NSSet *categories = [NSSet setWithObject:actionCategory];

    UIUserNotificationType types = (UIUserNotificationTypeAlert|

                                    UIUserNotificationTypeSound|

                                    UIUserNotificationTypeBadge);

 

    UIUserNotificationSettings *settings;

    settings = [UIUserNotificationSettings settingsForTypes:types

                                                 categories:categories];

 

    [[UIApplication sharedApplication] registerUserNotificationSettings:settings];

}

要发送这个通知类型,只需简单的将category添加到声明里。


1

2

3

4

"aps" : { 

    "alert"    "Pull down to interact.",

    "category" "ACTIONABLE"

}

现在为了响应用户选择的操作,你需要在UIApplicationDelegate协议添加两个新方法:


1

2

application:handleActionWithIdentifier:forLocalNotification:completionHandler:

application:handleActionWithIdentifier:forRemoteNotification:completionHandler:

用户从你的推送通知中选择一个动作后,该方法将会在后台被调用。


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo completionHandler:(void (^)())completionHandler {

 

    if ([identifier isEqualToString:NotificationActionOneIdent]) {

 

        NSLog(@"You chose action 1.");

    }

    else if ([identifier isEqualToString:NotificationActionTwoIdent]) {   

 

        NSLog(@"You chose action 2.");

    }    

    if (completionHandler) {

 

        completionHandler();

    }

}

如文档所述,通过标示符来判定是哪个动作被选中,最后调用completionHandler,即可大功告成。这里仅仅简单的演示了一下iOS 8 新通知API表面上的功能,今后将进行更深入的研究。

时间: 2024-11-03 03:45:00

iOS 8创建交互式通知-备的相关文章

iOS 8创建交互式通知

iOS 8提供了一个令人兴奋的新API来创建交互式通知(interactive notifications),它能让你在你的应用之外为用户提供额外的功能.我发现网上还没有关于如何实现它的比较好的示例教程,所以我将在这篇文章里来实现一个简单的交互式通知示例,分享给大家. 为了创建交互式通知,需要iOS 8提供的3个新类:UIUserNotificationSettings, UIUserNotificationCategory, UIUserNotificationAction 以及它们的变体.

DevStore技术支持:在iOS 8中创建交互式通知

摘要:iOS 8提供了一个令人兴奋的新API来创建交互式通知,它能让你在你的应用之外为用户提供额外的功能. 由于发现网上还没有关于如何实现它的比较好的示例教程,所以我将在这篇文章里来实现一个简单的交互式通知示例,分享给大家. 和以前简单地注册通知类型(sounds.banners.alerts)相比,现在你可以注册自定义的通知类别和动作.类别描述了应用自定义的通知类型,并且包含用户能够执行的响应动作.比如,你收到一个通知说某人在社交网上了关注了你,作为回应你可能会想要关注他或者忽略. 这里是一个

iOS创建本地通知和删除对应的通知,工作日通知

本文的代码主要是:创建本地通知,删除对应的本地通知,创建工作日闹钟 直接上代码: // // ViewController.m // LocalNSNotification // // Created by wusiping on 16/1/27. // Copyright © 2016年 wusiping. All rights reserved. // #import "ViewController.h" #define LOCAL_NOTIFY_SCHEDULE_ID @&quo

ios中创建可以拖动的view原理和实现详解

有时候我们会需要在界面上拖动view;uiview是继承于uiresponder的,所以可以响应触摸相关的事件. 重点是以下一组方法: - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event - (void)touchesEnded:(NSSet *)touches withEvent:(UIE

ios 独立创建一条线程,去做些事情

- (void)startLoop { [NSThread detachNewThreadSelector:@selector(loopMethod) toTarget:self withObject:nil]; } - (void)loopMethod { [NSTimer scheduledTimerWithTimeInterval:3.0f target:self selector:@selector(toDo) userInfo:nil repeats:YES]; NSRunLoop *

IOS开发创建开发证书及发布App应用(二)——创建证书

源于:http://www.jkqnb.com/ydkf/article/27 预览图 2. 创建证书 证书分为两种, 一种是开发者证书,主要是用来真机调试的 另一种就是发布证书,就是用来发布应用的, 最好是两种都要下载,不然编译时候可能报错,我猜想可能苹果怕你没用真机调试 创建证书分为两个步骤: 在苹果电脑生成证书签名公钥 提交证书公钥文件到开发者网站 1)  创建开发者证书  1.生成证书签名公钥 在有Mac OS X的操作系统中打开"应用程序" -- "实用工具&quo

ios中创建控制器的几种方式

1.通过storyboard创建: (1)先加载storyboard文件: UIStoryboard * storyboard = [UIStoryboard storyboardWithName:@"Test"  bundle:nil]; (2) 初始化storyboard中的控制器: ①初始化"初始控制器":HLViewController * hl = [storyboard instantiateInitialViewController]; ②通过标识初始

ios中创建可以拖动的view原理和实现详解(含代码)

有时候我们会需要在界面上拖动view;uiview是继承于uiresponder的,所以可以响应触摸相关的事件. 重点是以下一组方法: - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event - (void)touchesEnded:(NSSet *)touches withEvent:(UIE

IOS开发创建开发证书及发布App应用(一)——流程说明

源于:http://www.jkqnb.com/ydkf/article/26 描述 先说一下这个发布 编译 苹果app的流程吧1. 注册苹果开发者帐号2. 创建证书 3. 创建App ID(不是那个登录账号)4. 创建配置概要文件5. 应用编译6. 应用打包 7. 在iTunes创建填写应用基本信息8. 使用Application Loader工具上传应用9. 等待审核 1.注册苹果开发者账号注册之后一定要成为付费会员,一种99美元(标准版) 一种299美元(企业版)具体区别就百度吧,一般都是