二、<iOS 推送> 本地推送

最近,再次看路遥 《平凡的世界》时,多多少少有自己的影子在里面,觉得没有什么爱与不爱的,在一起就是一种幸福吧。就像润叶和向前在一起,虽然向前失去了双腿,他最终得到一个好老婆和一个可爱的儿子。有时候觉得和谁在一起真的不重要,重要是她开心,你也觉得幸福。生活应该是柴米油盐,而非风花雪月啦。

一、 iOS 10 本地推送的效果图

本文将重点讲述如何实现 iOS 10的本地推送通知的用法,如下是效果图。

本地推送.gif

上面的 gif 图片都已经本地推送的如下功能:

  • 1、通知附件中有视频
  • 2、 通知中有通知标题、副标题和通知内容
  • 3、 通知 action
  • 4、前台和后台都能接收到通知。

二、 iOS 10 本地推送实现思路

关于 iOS 10 本地推送实现思路分为如下三个步骤:
0>、手动导入资源文件,如下图。


Snip20170725_34.png

1>、应用启动时,注册通知,并设置 Action 按键的样式和标题。

2>、设置通知的内容,附件、通知的触发条件。

3>、在代理中处理相对应的内容。一般是处理 用户点击那个按键,并处理相对应的事件。

三、 iOS 10 本地代码的实现

1、在 AppDelegate.m 中
  • A、首先要导入头文件
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
#import <UserNotifications/UserNotifications.h>
#endif
  • B、在 didFinishLaunchingWithOptions 方法中注册通知,主要思路是实现如下的内容:
    1>、注册通知 requestAuthorizationWithOptions,在此方法中,注册通知需要有授权,设置推送的声音、Badge 等四种模式。

2>、设置推送的 Action,点击 Action 按键有三种状态,UNNotificationActionOptionForeground 直接开启应用,UNNotificationActionOptionDestructive 取消,
UNNotificationActionOptionAuthenticationRequired 需要解锁


Snip20170725_35.png

3>、将本地推送包装在 UNNotificationCategory 对象中,记得设置 UNNotificationCategory 对象的标识符。

4>、将UNNotificationCategory 对象加入在通知中心去。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    if ([[UIDevice currentDevice].systemVersion doubleValue] >= 10.0) {

        //ios 10 版本以上的通知
        UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
        //注册通知
        [center requestAuthorizationWithOptions:UNAuthorizationOptionBadge| UNAuthorizationOptionSound|UNAuthorizationOptionAlert|UNAuthorizationOptionCarPlay completionHandler:^(BOOL granted, NSError * _Nullable error) {
            NSLog(@"错误的要求通知,%@",error);
            
        }];
        
        // Action 内容 UNNotificationActionOptionForeground 点击 actionbutton 会跳转到应用中
        UNNotificationAction *actionOne = [UNNotificationAction actionWithIdentifier:@"action1" title:@"action1" options:UNNotificationActionOptionForeground];
        
        UNNotificationAction *actionTwo = [UNNotificationAction actionWithIdentifier:@"action2" title:@"action2" options:UNNotificationActionOptionForeground];
        
        UNNotificationAction *actionThree = [UNNotificationAction actionWithIdentifier:@"action3" title:@"action3" options:UNNotificationActionOptionForeground];
        
        //分类
        UNNotificationCategory *category = [UNNotificationCategory categoryWithIdentifier:@"category" actions:@[actionOne,actionTwo,actionThree] intentIdentifiers:@[] options:0];
        
        //添加分类
        [[UNUserNotificationCenter currentNotificationCenter] setNotificationCategories:[NSSet setWithObject:category]];
        
        
    }else if([[UIDevice currentDevice].systemVersion doubleValue] >= 8.0){
        //iOS 10 ~ iOS 8 之间的通知
        UIMutableUserNotificationAction *action1 = [UIMutableUserNotificationAction new];
        action1.identifier =  @"actionOne";
        action1.title = @"actionOne";
        action1.activationMode = UIUserNotificationActivationModeForeground;
        
        UIMutableUserNotificationCategory * category = [[UIMutableUserNotificationCategory alloc] init] ;
        
        UIUserNotificationSettings *setting = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeSound | UIUserNotificationTypeBadge  categories:[NSSet setWithObject:category]];
 [application registerUserNotificationSettings:setting];
        
    }else if([[UIDevice currentDevice].systemVersion doubleValue] < 8.0){
    
        // 低于 iOS 8 以下的系统
    }
    // Override point for customization after application launch.
    return YES;
}
2、在 ViewController.m 文件中
  • A、导入头文件
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
#import <UserNotifications/UserNotifications.h>
#endif
  • B、设置通知代码
- (void)viewDidLoad {
   [super viewDidLoad];
   [UNUserNotificationCenter currentNotificationCenter].delegate = self;
   // Do any additional setup after loading the view, typically from a nib.
}
  • C、推送代理方法的实现
    1>、willPresentNotification 实现此代理方法可以接收来自前台的通知。当实现 completionHandler 时,如果加入 UNNotificationPresentationOptionBadge 时,前台不会接收到通知。

    2>、didReceiveNotificationResponse 此方法通过 Action 标识来识别用户点击那个 Action 按键。这样我们可以通过这个来处理相对应的事件。

  #pragma mark - UNNotification
  //此方法能在前台收到通知
   - (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler{

    completionHandler(UNNotificationPresentationOptionAlert|UNNotificationPresentationOptionSound);
}

// The method will be called on the delegate when the user responded to the notification by opening the application, dismissing the notification or choosing a UNNotificationAction. The delegate must be set before the application returns from applicationDidFinishLaunching:.
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)())completionHandler{
    if ([response.actionIdentifier isEqualToString:@"action1"]) {
        self.noticeImage.image = [UIImage imageNamed:@"1"];
    }else if([response.actionIdentifier isEqualToString:@"action2"]){
        self.noticeImage.image = [UIImage imageNamed:@"2"];
    
    }else if([response.actionIdentifier isEqualToString:@"action3"]){
        UIAlertController *alert =  [UIAlertController alertControllerWithTitle:@"通知标题" message:@"hello world" preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction *action = [UIAlertAction actionWithTitle:@"1" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            
        }];
        [alert addAction:action];
        [self presentViewController:alert animated:YES completion:nil];
    }
    completionHandler();
}
  • D、设置推送内容和附件


    Snip20170725_36.png

    1>、设置推送内容,UNMutableNotificationContent 对象中是用来写推送的内容的,推送的声音,推送的角标。一定、一定、一定要注意,UNMutableNotificationContent 对象 categoryIdentifier 属性要与注册的标识一样,否则不能加载 Action 按键。

    2>、设置推送附件,UNNotificationAttachment 对象是用于处理附件的,本地推送附件可以是 音频、视频、图片、gif 动图。一定一定要注意,使用本地的资源,不能用网上的资源,否则 UNNotificationAttachment 对象为空。其中资源文件的大小如下截图。


    3>、触发推送,本地有三种推送方式:时间、日期、地区。本案例使用的是 时间 UNTimeIntervalNotificationTrigger。

    4>、将推送的内容和触发条件包装在 UNNotificationRequest 对象中。

    5>、将 UNNotificationRequest 对象 加入在 UNUserNotificationCenter 对象中。

#pragma  mark - 发送通知
- (IBAction)sendNotice:(id)sender {
    //1.设置通知内容
    UNMutableNotificationContent *content = [[UNMutableNotificationContent alloc] init];
    content.title = @"通知标题";
    content.subtitle = @"副标题";
    content.body = @"iOS 10 本地通知文本内容,你好吖,亲!!!";
    content.badge = [NSNumber numberWithInteger:1];
    content.categoryIdentifier = @"category";
    content.sound = [UNNotificationSound defaultSound];
    
    //2.设备通知的附件
    NSURL *url = [[NSBundle mainBundle] URLForResource:@"flv视频测试用例1.mp4" withExtension:@""];

    UNNotificationAttachment *attchment = [UNNotificationAttachment attachmentWithIdentifier:@"2" URL:url options:nil error:nil];
    if (attchment == nil) {
        NSLog(@"空的item");
        return;
    }
    content.attachments = @[attchment];
    
    //3.触发本地通知
    UNTimeIntervalNotificationTrigger * trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:2 repeats:NO];
    
    //4.将通知的信息和触发条件放在 request中
    UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:@"request" content:content trigger:trigger];
    //5. 添加通知
    [[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {
        
    }];

}

完整代码,多谢你完整的读完本文,感恩!

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

推荐阅读更多精彩内容