推送通知-设置类别 - (Obj-C)

iOS 8.0支持设置推送通知的类别,执行一些快捷操作:

推送通知-设置类别 - (Obj-C)_第1张图片
action_1.png
推送通知-设置类别 - (Obj-C)_第2张图片
action_2.png
推送通知-设置类别 - (Obj-C)_第3张图片
action_3.png
推送通知-设置类别 - (Obj-C)_第4张图片
action_4.png

弹窗型效果:

推送通知-设置类别 - (Obj-C)_第5张图片
弹窗型_1.png

点击"选项":


推送通知-设置类别 - (Obj-C)_第6张图片
弹窗型_2.png

横幅型效果:

推送通知-设置类别 - (Obj-C)_第7张图片
横幅型.png

点击前台就会打开应用,点击后台按钮,后台运行状态

需要注意的是,如果设置了类别, 只有当执行类别中的某个动作时, 才会执行新的回调方法, 以及当App处于前台时仍然会调用老方法(didReceiveLocalNotification)

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification NS_AVAILABLE_IOS(4_0) __TVOS_PROHIBITED;

方法,需要使用下面的方法接收推送通知的信息,即便程序退出,也是可以收到推送通知的

- (void)application:(UIApplication *)application handleActionWithIdentifier:(nullable NSString *)identifier forLocalNotification:(UILocalNotification *)notification completionHandler:(void(^)())completionHandler NS_AVAILABLE_IOS(8_0) __TVOS_PROHIBITED;
/**
 *  当接收到使用iOS 8 动作类别的通知后调用
 *
 *  @param application       应用
 *  @param identifier        动作的标识符
 *  @param notification      通知
 *  @param completionHandler 完成回调
 */
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification completionHandler:(void (^)())completionHandler{
    
    if ([identifier isEqualToString:@"forceground"]) { // 点击前台按钮
        NSLog(@"点击前台按钮");
    } else {
        NSLog(@"点击后台按钮");
    }
    
    // 不调用回调控制台会弹出警告
    // 作用:系统需要根据回调来更新应用的快照&设置应用的挂起 前台模式会进入应用直接刷新了UI,而后台模式执行时,为了提升用户体验,需要更新快照
    completionHandler();
    
}

如果没有调用完成回调,控制台会弹出警告:

Warning: Application delegate received call to -application:handleActionWithIdentifier:forLocalNotification:completionHandler: but the completion handler was never called.

执行回调的作用:系统需要根据回调来更新应用的快照&设置应用的挂起
原因:前台模式会进入应用直接刷新了UI,而后台模式执行时,为了提升用户体验,需要更新快照

切换应用时的每一个视图都是一个应用快照:


推送通知-设置类别 - (Obj-C)_第8张图片
快照.png

示例代码:

ViewController:

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

// 创建本地通知
- (IBAction)StartLocalNoteButtonClick:(id)sender {
    
    // 创建本地通知
    UILocalNotification *localNotification = [[UILocalNotification alloc]init];
    
    // 设置属性
    // 1.触发事件
    localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:5];
    // 2.设置通知的显示内容
    localNotification.alertBody = @"收到一条新消息";
    
    // 设置通知的类别  (与类别进行绑定)
    localNotification.category = @"localNote";
    
    // 设置传递的信息
    localNotification.userInfo = @{@"page":@1};
    
    // 预定通知(UIApplication 作为系统和应用的桥梁,一般负责应用和系统相关的工作)
    // iOS 8.0以后,在预定和展示通知之前必须要注册通知,请求授权
    [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
    
}

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // 注册通知,请求授权
    /*
         UIUserNotificationTypeNone  无任何效果
         UIUserNotificationTypeBadge 通知含有角标
         UIUserNotificationTypeSound 带声音
         UIUserNotificationTypeAlert 提示文字
     */
    
    // 设置类别
    UIMutableUserNotificationCategory *category = [[UIMutableUserNotificationCategory alloc]init];
    // 设置类别标记
    category.identifier = @"localNote";
    
    // 创建动作
    UIMutableUserNotificationAction *action1 = [[UIMutableUserNotificationAction alloc]init];
    // 设置标识符
    action1.identifier = @"foreground";
    // 设置标题
    action1.title = @"我是前台按钮";
    // 设置激活模式
    action1.activationMode = UIUserNotificationActivationModeForeground;
    
    // 创建动作
    UIMutableUserNotificationAction *action2 = [[UIMutableUserNotificationAction alloc]init];
    action2.identifier = @"background";
    action2.title = @"我是后台按钮";
    action2.activationMode = UIUserNotificationActivationModeBackground;
    
    // 添加动作
    /*
         UIUserNotificationActionContextDefault  设置该类型 弹窗型最多可以展示6个按钮(4个自定义按钮,2个默认按钮:打开和关闭)
         UIUserNotificationActionContextMinimal  设置该类型 相当于设置iOS7没有自定义按钮的样式(打开和关闭,如果屏幕较小展示不够,可以设置此类型)
     */
    [category setActions:@[action1,action2] forContext:UIUserNotificationActionContextDefault];
    
    UIUserNotificationSettings *notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:[NSSet setWithObjects:category, nil]];
    [[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];
    
}

@end

AppDelegate:

/**
 *  当接收到使用iOS 8 动作类别的通知后调用
 *
 *  @param application       应用
 *  @param identifier        动作的标识符
 *  @param notification      通知
 *  @param completionHandler 完成回调
 */
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification completionHandler:(void (^)())completionHandler{
    
    if ([identifier isEqualToString:@"forceground"]) { // 点击前台按钮
        NSLog(@"点击前台按钮");
    } else {
        NSLog(@"点击后台按钮");
    }
    
    // 不调用回调控制台会弹出警告
    // 作用:系统需要根据回调来更新应用的快照&设置应用的挂起 前台模式会进入应用直接刷新了UI,而后台模式执行时,为了提升用户体验,需要更新快照
    completionHandler();
    
}

UIMutableUserNotificationAction属性介绍:

     
// 动作的标识符  用于区分不同的通知动作(按钮/滑块)
@property (nullable, nonatomic, copy) NSString *identifier;
     
// 动作上的文字
@property (nullable, nonatomic, copy) NSString *title;
     
// 行为 iOS9行为
@property (nonatomic, assign) UIUserNotificationActionBehavior behavior NS_AVAILABLE_IOS(9_0);
     
// 行为的参数
@property (nonatomic, copy) NSDictionary *parameters NS_AVAILABLE_IOS(9_0);
     
// 激活模式
@property (nonatomic, assign) UIUserNotificationActivationMode activationMode;
     
UIUserNotificationActivationModeForeground, // 点击按钮后让APP进入前台
UIUserNotificationActivationModeBackground  // 点击按钮后让APP进入后台
     
     
// 锁屏时打开通知是否需要解锁
@property (nonatomic, assign, getter=isAuthenticationRequired) BOOL authenticationRequired;
     
// 是否具有毁灭性  设置该按钮为红色
@property (nonatomic, assign, getter=isDestructive) BOOL destructive;

你可能感兴趣的:(推送通知-设置类别 - (Obj-C))