iOS 通知擴展

級別: ★★☆☆☆
標簽:「iOS通知擴展」「iOS推送擴展」「UNNotificationServiceExtension」「UNNotificationContentExtension」
作者: dac_1033
審校: QiShare團隊


iOS10之后的通知具有擴展功能菠隆,可以在系統(tǒng)收到通知、展示通知時做一些事情禁悠。下面是實現(xiàn)步驟要點介紹:

1. 創(chuàng)建UNNotificationServiceExtension和UNNotificationContentExtension:

  • UNNotificationServiceExtension:通知服務擴展,是在收到通知后囊陡,展示通知前纵竖,做一些事情的。比如梆掸,增加附件瘪贱,網(wǎng)絡請求等纱控。點擊查看官網(wǎng)文檔
  • UNNotificationContentExtension:通知內(nèi)容擴展,是在展示通知時展示一個自定義的用戶界面政敢。點擊查看官網(wǎng)文檔
創(chuàng)建兩個target

創(chuàng)建兩個target的結(jié)果

注意:

  • 如上圖默認情況下其徙,兩個新生成target的bundleId是主工程名字的bundleId.target名稱胚迫,不需要修改喷户;
  • target支持的iOS版本為10.0及以上。


2. 通知服務擴展UNNotificationServiceExtension

在NotificationService.m文件中访锻,有兩個方法:

// 系統(tǒng)接到通知后褪尝,有最多30秒在這里重寫通知內(nèi)容(如下載附件并更新通知)
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent *contentToDeliver))contentHandler;
// 處理過程超時,則收到的通知直接展示出來
- (void)serviceExtensionTimeWillExpire;

代碼示例如下:

#import "NotificationService.h"
#import <AVFoundation/AVFoundation.h>

@interface NotificationService ()

@property (nonatomic, strong) void (^contentHandler)(UNNotificationContent *contentToDeliver);
@property (nonatomic, strong) UNMutableNotificationContent *bestAttemptContent;

@end

@implementation NotificationService

- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {
    self.contentHandler = contentHandler;
    self.bestAttemptContent = [request.content mutableCopy];
    
    //// Modify the notification content here...
    self.bestAttemptContent.title = [NSString stringWithFormat:@"%@ [modified]", self.bestAttemptContent.title];
    
    // 注:為通知下拉手動展開時期犬,可添加多個事件
    // UNNotificationActionOptions包含三個值UNNotificationActionOptionAuthenticationRequired河哑、UNNotificationActionOptionDestructive、UNNotificationActionOptionForeground
    UNNotificationAction * actionA  =[UNNotificationAction actionWithIdentifier:@"ActionA" title:@"Required" options:UNNotificationActionOptionAuthenticationRequired];
    UNNotificationAction * actionB = [UNNotificationAction actionWithIdentifier:@"ActionB" title:@"Destructive" options:UNNotificationActionOptionDestructive];
    UNNotificationAction * actionC = [UNNotificationAction actionWithIdentifier:@"ActionC" title:@"Foreground" options:UNNotificationActionOptionForeground];
    UNTextInputNotificationAction * actionD = [UNTextInputNotificationAction actionWithIdentifier:@"ActionD"
                                                                                            title:@"Input-Destructive"
                                                                                          options:UNNotificationActionOptionDestructive
                                                                             textInputButtonTitle:@"Send"
                                                                             textInputPlaceholder:@"input some words here ..."];
    NSMutableArray *actionArr = [[NSMutableArray alloc] initWithObjects:actionA, actionB, actionC, actionD, nil];
    if (actionArr.count) {
        UNNotificationCategory * notficationCategory = [UNNotificationCategory categoryWithIdentifier:@"categoryNoOperationAction"
                                                                                              actions:actionArr
                                                                                    intentIdentifiers:@[@"ActionA",@"ActionB",@"ActionC",@"ActionD"]
                                                                                              options:UNNotificationCategoryOptionCustomDismissAction];
        [[UNUserNotificationCenter currentNotificationCenter] setNotificationCategories:[NSSet setWithObject:notficationCategory]];
    }
    
    
    // 注:1.通知擴展功能須在aps串中設置字段"mutable-content":1龟虎; 2.多媒體的字段可以與appServer協(xié)議制定璃谨;
    self.bestAttemptContent.categoryIdentifier = @"QiShareCategoryIdentifier";
    
    NSDictionary *userInfo =  self.bestAttemptContent.userInfo;
    NSString *mediaUrl = [NSString stringWithFormat:@"%@", userInfo[@"media"][@"url"]];
    if (!mediaUrl.length) {
        self.contentHandler(self.bestAttemptContent);
    } 
    else {
        [self loadAttachmentForUrlString:mediaUrl withType:userInfo[@"media"][@"type"] completionHandle:^(UNNotificationAttachment *attach) {
            if (attach) {
                self.bestAttemptContent.attachments = [NSArray arrayWithObject:attach];
            }
            self.contentHandler(self.bestAttemptContent);
        }];
    }
}

- (void)loadAttachmentForUrlString:(NSString *)urlStr withType:(NSString *)type completionHandle:(void(^)(UNNotificationAttachment *attach))completionHandler {
    __block UNNotificationAttachment *attachment = nil;
    NSURL *attachmentURL = [NSURL URLWithString:urlStr];
    NSString *fileExt = [self fileExtensionForMediaType:type];
    
    NSURLSession *session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration defaultSessionConfiguration]];
    [[session downloadTaskWithURL:attachmentURL completionHandler:^(NSURL *temporaryFileLocation, NSURLResponse *response, NSError *error) {
        if (error != nil) {
            NSLog(@"加載多媒體失敗 %@", error.localizedDescription);
        } 
        else {
            NSFileManager *fileManager = [NSFileManager defaultManager];
            NSURL *localURL = [NSURL fileURLWithPath:[temporaryFileLocation.path stringByAppendingString:fileExt]];
            [fileManager moveItemAtURL:temporaryFileLocation toURL:localURL error:&error];
            // 自定義推送UI需要
            NSMutableDictionary * dict = [self.bestAttemptContent.userInfo mutableCopy];
            [dict setObject:[NSData dataWithContentsOfURL:localURL] forKey:@"image"];
            self.bestAttemptContent.userInfo = dict;
            
            NSError *attachmentError = nil;
            attachment = [UNNotificationAttachment attachmentWithIdentifier:@"" URL:localURL options:nil error:&attachmentError];
            if (attachmentError) {
                NSLog(@"%@", attachmentError.localizedDescription);
            }
        }
        completionHandler(attachment);
    }] resume];
}

- (NSString *)fileExtensionForMediaType:(NSString *)type {
    NSString *ext = type;
    if ([type isEqualToString:@"image"]) {
        ext = @"jpg";
    }
    else if ([type isEqualToString:@"video"]) {
        ext = @"mp4";
    }
    else if ([type isEqualToString:@"audio"]) {
        ext = @"mp3";
    }
    return [@"." stringByAppendingString:ext];
}

- (void)serviceExtensionTimeWillExpire {
    // Called just before the extension will be terminated by the system.
    // Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used.
    self.contentHandler(self.bestAttemptContent);
}

@end

aps串格式:
{"aps":{"alert":{"title":"Title...","subtitle":"Subtitle...","body":"Body..."},"sound":"default","badge": 1,"mutable-content": 1,"category": "realtime",},"msgid":"123","media":{"type":"image","url":"https://www.fotor.com/images2/features/photo_effects/e_bw.jpg"}}

說明:

  • 加載并處理附件的時間要在30秒之內(nèi),才會達到預期效果鲤妥;
  • UNNotificationAttachment的url參數(shù)接收的是本地文件的url佳吞;
  • 服務端在處理推送內(nèi)容時,需要加上文件類型字段棉安;
  • aps字符串中的mutable-content字段需要設置為1底扳;
  • 在對NotificationService這個target打斷點debug的時候,需要在XCode頂欄選擇編譯運行的target為NotificationService贡耽,否則無法進行實時debug衷模。


3. 通知內(nèi)容擴展UNNotificationContentExtension

通知內(nèi)容擴展過程中鹊汛,展示在用戶面前的NotificationViewController的結(jié)構(gòu)說明如圖如下:


通知內(nèi)容擴展界面

1、設置actions:
從NotificationViewController這個類可以看出阱冶,它直接繼承于ViewController刁憋,因此可以在這個類中重寫相關方法,來修改界面的相關布局及樣式熙揍。在這個界面展開之前职祷,用戶通過UNNotificationAction還是可以與相應推送通知交互的,但是用戶和這個通知內(nèi)容擴展界面無法直接交互届囚。(這些actions有兩種設置途徑:用戶可以通過在AppDelegate中實例化UIUserNotificationSettings來間接設置這些actions有梆;在UNNotificationServiceExtension中也可以處理這些actions。)
2意系、設置category:
推送通知內(nèi)容中的category字段泥耀,與UNNotificationContentExtension的info.plist中UNNotificationExtensionCategory字段的值要匹配到,系統(tǒng)才能找到自定義的UI蛔添。

在aps字符串中直接設置category字段如下:

{ "aps":{ "alert":"Testing...(0)","badge":1,"sound":"default","category":"QiShareCategoryIdentifier"}}

在NotificationService.m中設置category的值如下:

self.bestAttemptContent.categoryIdentifier = @"QiShareCategoryIdentifier";

info.plist中關于category的配置如下:


關于UNNotificationExtensionCategory的設置

3痰催、UNNotificationContentExtension協(xié)議:NotificationViewController 中生成時默認實現(xiàn)了。

簡單的英文注釋很明了:

// This will be called to send the notification to be displayed by
// the extension. If the extension is being displayed and more related
// notifications arrive (eg. more messages for the same conversation)
// the same method will be called for each new notification.
- (void)didReceiveNotification:(UNNotification *)notification迎瞧;

// If implemented, the method will be called when the user taps on one
// of the notification actions. The completion handler can be called
// after handling the action to dismiss the notification and forward the
// action to the app if necessary.
- (void)didReceiveNotificationResponse:(UNNotificationResponse *)response completionHandler:(void (^)(UNNotificationContentExtensionResponseOption))completion

// Called when the user taps the play or pause button.
- (void)mediaPlay;
- (void)mediaPause;

4夸溶、UNNotificationAttachment:attachment支持

  • 音頻5M(kUTTypeWaveformAudio/kUTTypeMP3/kUTTypeMPEG4Audio/kUTTypeAudioInterchangeFileFormat)
  • 圖片10M(kUTTypeJPEG/kUTTypeGIF/kUTTypePNG)
  • 視頻50M(kUTTypeMPEG/kUTTypeMPEG2Video/kUTTypeMPEG4/kUTTypeAVIMovie)

自定義內(nèi)容擴展界面示例代碼如下:

#import "NotificationViewController.h"
#import <UserNotifications/UserNotifications.h>
#import <UserNotificationsUI/UserNotificationsUI.h>

#define Margin      15

@interface NotificationViewController () <UNNotificationContentExtension>

@property (nonatomic, strong) UILabel *label;
@property (nonatomic, strong) UILabel *subLabel;
@property (nonatomic, strong) UIImageView *imageView;

@property (nonatomic, strong) UILabel *hintLabel;

@end

@implementation NotificationViewController

- (void)viewDidLoad {

    [super viewDidLoad];
    
    CGPoint origin = self.view.frame.origin;
    CGSize size = self.view.frame.size;
    
    self.label = [[UILabel alloc] initWithFrame:CGRectMake(Margin, Margin, size.width-Margin*2, 30)];
    self.label.autoresizingMask = UIViewAutoresizingFlexibleWidth;
    [self.view addSubview:self.label];
    
    self.subLabel = [[UILabel alloc] initWithFrame:CGRectMake(Margin, CGRectGetMaxY(self.label.frame)+10, size.width-Margin*2, 30)];
    self.subLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
    [self.view addSubview:self.subLabel];
    
    self.imageView = [[UIImageView alloc] initWithFrame:CGRectMake(Margin, CGRectGetMaxY(self.subLabel.frame)+10, 100, 100)];
    [self.view addSubview:self.imageView];
    
    self.hintLabel = [[UILabel alloc] initWithFrame:CGRectMake(Margin, CGRectGetMaxY(self.imageView.frame)+10, size.width-Margin*2, 20)];
    [self.hintLabel setText:@"我是hintLabel"];
    [self.hintLabel setFont:[UIFont systemFontOfSize:14]];
    [self.hintLabel setTextAlignment:NSTextAlignmentLeft];
    [self.view addSubview:self.hintLabel];
    self.view.frame = CGRectMake(origin.x, origin.y, size.width, CGRectGetMaxY(self.imageView.frame)+Margin);

    // 設置控件邊框顏色
    [self.label.layer setBorderColor:[UIColor redColor].CGColor];
    [self.label.layer setBorderWidth:1.0];
    [self.subLabel.layer setBorderColor:[UIColor greenColor].CGColor];
    [self.subLabel.layer setBorderWidth:1.0];
    [self.imageView.layer setBorderWidth:2.0];
    [self.imageView.layer setBorderColor:[UIColor blueColor].CGColor];
    [self.view.layer setBorderWidth:2.0];
    [self.view.layer setBorderColor:[UIColor cyanColor].CGColor];
}

- (void)didReceiveNotification:(UNNotification *)notification {
    
    self.label.text = notification.request.content.title;
    self.subLabel.text = [NSString stringWithFormat:@"%@ [ContentExtension modified]", notification.request.content.subtitle];
    
    NSData *data = notification.request.content.userInfo[@"image"];
    UIImage *image = [UIImage imageWithData:data];
    [self.imageView setImage:image];
}

- (void)didReceiveNotificationResponse:(UNNotificationResponse *)response completionHandler:(void (^)(UNNotificationContentExtensionResponseOption))completion {
    
    [self.hintLabel setText:[NSString stringWithFormat:@"觸發(fā)了%@", response.actionIdentifier]];
    if ([response.actionIdentifier isEqualToString:@"ActionA"]) {
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            completion(UNNotificationContentExtensionResponseOptionDismiss);
        });
    } else if ([response.actionIdentifier isEqualToString:@"ActionB"]) {

    } else if ([response.actionIdentifier isEqualToString:@"ActionC"]) {

    }  else if ([response.actionIdentifier isEqualToString:@"ActionD"]) {

    } else {
        completion(UNNotificationContentExtensionResponseOptionDismiss);
    }
    completion(UNNotificationContentExtensionResponseOptionDoNotDismiss);
}

@end

說明:

  • 服務擴展target和內(nèi)容擴展target在配置中所支持的系統(tǒng)版本要在iOS10及以上;
  • 自定義視圖的大小可以通過設置NotificationViewController的preferredContentSize大小來控制凶硅,但是用戶體驗稍顯突兀缝裁,可以通過設置info.plist中的UNNotificationExtensionInitialContentSizeRatio屬性的值來優(yōu)化;
  • contentExtension中的info.plist中NSExtension下的NSExtensionAttributes字段下可以配置以下屬性的值足绅,UNNotificationExtensionCategory:表示自定義內(nèi)容假面可以識別的category捷绑,可以為數(shù)組,即可以為這個content綁定多個通知氢妈;UNNotificationExtensionInitialContentSizeRatio:默認的UI界面的高寬比粹污;UNNotificationExtensionDefaultContentHidden:是否顯示系統(tǒng)默認的標題欄和內(nèi)容,可選參數(shù)首量;UNNotificationExtensionOverridesDefaultTitle:是否讓系統(tǒng)采用消息的標題作為通知的標題壮吩,可選參數(shù)。
  • 處理通知內(nèi)容擴展的過程中關于identifier的設置共有五處(UNNotificationAction加缘、UNNotificationCategory鸭叙、bestAttemptContent、contentExtension中的info.plist中生百,aps字符串中)递雀,請區(qū)別不同identifier的作用。
  • 兩個擴展聯(lián)合使用蚀浆,在XCode中選擇當前target缀程,才能打斷點看到相應log信息搜吧。

工程源碼:GitHub地址


推薦文章:
iOS 本地通知
iOS 遠程通知

最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市杨凑,隨后出現(xiàn)的幾起案子滤奈,更是在濱河造成了極大的恐慌,老刑警劉巖撩满,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蜒程,死亡現(xiàn)場離奇詭異,居然都是意外死亡伺帘,警方通過查閱死者的電腦和手機昭躺,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來伪嫁,“玉大人领炫,你說我怎么就攤上這事≌趴龋” “怎么了帝洪?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長脚猾。 經(jīng)常有香客問我葱峡,道長,這世上最難降的妖魔是什么龙助? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任砰奕,我火速辦了婚禮,結(jié)果婚禮上泌参,老公的妹妹穿的比我還像新娘脆淹。我一直安慰自己常空,他們只是感情好沽一,可當我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布茎活。 她就那樣靜靜地躺著策精,像睡著了一般阳欲。 火紅的嫁衣襯著肌膚如雪虾啦。 梳的紋絲不亂的頭發(fā)上棘劣,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天锻霎,我揣著相機與錄音赤惊,去河邊找鬼敲长。 笑死醉鳖,一個胖子當著我的面吹牛捡硅,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播盗棵,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼壮韭,長吁一口氣:“原來是場噩夢啊……” “哼北发!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起喷屋,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤琳拨,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后屯曹,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體狱庇,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年恶耽,在試婚紗的時候發(fā)現(xiàn)自己被綠了密任。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡偷俭,死狀恐怖批什,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情社搅,我是刑警寧澤驻债,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站形葬,受9級特大地震影響合呐,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜笙以,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一淌实、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧猖腕,春花似錦拆祈、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至老玛,卻和暖如春淤年,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背蜡豹。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工麸粮, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人镜廉。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓弄诲,卻偏偏與公主長得像,于是被迫代替她去往敵國和親娇唯。 傳聞我的和親對象是個殘疾皇子齐遵,可洞房花燭夜當晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容

  • iOS10之后的通知具有通知擴展功能凤巨,可以在系統(tǒng)受到通知、展示通知時做一些事情洛搀。 UNNotificationSe...
    大成小棧閱讀 841評論 1 7
  • 無論設備處于鎖定狀態(tài)還是使用中敢茁,都可以使用通知提供及時、重要的信息留美。無論app處于foreground彰檬、backg...
    pro648閱讀 7,766評論 1 21
  • iOS 10 中以前雜亂的和通知相關的 API 都被統(tǒng)一了,現(xiàn)在開發(fā)者可以使用獨立的 UserNotificati...
    ios設計閱讀 762評論 0 2
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理谎砾,服務發(fā)現(xiàn)逢倍,斷路器,智...
    卡卡羅2017閱讀 134,599評論 18 139
  • 前言在今年6月14號蘋果WWDC開發(fā)者大會上景图,蘋果帶來了新的iOS系統(tǒng)——iOS 10较雕。蘋果為iOS 10帶來了十...
    sky_kYU閱讀 3,447評論 5 12