獲取 APNs(通知) 推送內(nèi)容

1迅脐、判斷如何啟動App


啟動App時會自動調(diào)用didFinishLaunchingWithOptions方法:如果launchOptions包含UIApplicationLaunchOptionsRemoteNotificationKey ,則表示用戶是通過點擊APNs 啟動App谴蔑;
如果不含有對應(yīng)鍵值龟梦,則表示用戶可能是直接點擊icon啟動App窃躲。

- (BOOL)application:(UIApplication *)application
    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// apn 內(nèi)容獲鹊僦稀:NSDictionary *remoteNotification = [launchOptions objectForKey: UIApplicationLaunchOptionsRemoteNotificationKey]
...
}

2、APNs獲取接口


1 ) iOS 6 及以下的系統(tǒng)版本:

如果 App在前臺運行收到APNs或者App處于后臺運行時點擊收到的APNs通知會觸發(fā)以下接口:

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo;
 // apn內(nèi)容為userInfo
2 ) iOS 7 及以上的系統(tǒng)版本:

如果 App在前臺運行收到APNs 或者 App處于后臺運行時點擊收到的APNs通知 或者(開啟了background功能)后臺收到background 通知會觸發(fā)以下接口:

 - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler; 
// apn內(nèi)容為userInfo
3 )iOS 10及以上的系統(tǒng)版本:

( 1 ) 和( 2 ) 點說到的通知獲取方法由以下兩個代理方法替代:

- (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler 
    __IOS_AVAILABLE(10.0) __TVOS_AVAILABLE(10.0) __WATCHOS_AVAILABLE(3.0);

- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)())completionHandler
    __IOS_AVAILABLE(10.0) __WATCHOS_AVAILABLE(3.0) __TVOS_PROHIBITED;

3挣输、示例代碼:

 // iOS 6 Remote Notificatio
 - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
        // 取得 APNs 標(biāo)準(zhǔn)信息內(nèi)容
        NSDictionary *aps = [userInfo valueForKey:@"aps"];
        NSString *content = [aps valueForKey:@"alert"]; //推送顯示的內(nèi)容
        NSInteger badge = [[aps valueForKey:@"badge"] integerValue]; //badge數(shù)量
        NSString *sound = [aps valueForKey:@"sound"]; //播放的聲音
         
        // 取得Extras字段內(nèi)容
        NSString *customizeField1 = [userInfo valueForKey:@"customizeExtras"]; //服務(wù)端中Extras字段撩嚼,key是自己定義的
        NSLog(@"content =[%@], badge=[%d], sound=[%@], customize field  =[%@]",content,badge,sound,customizeField1);
     
    }

    //iOS 7 Remote Notification
    - (void)application:(UIApplication *)application didReceiveRemoteNotification:  (NSDictionary *)userInfo fetchCompletionHandler:(void (^)   (UIBackgroundFetchResult))completionHandler {
     
        NSLog(@"this is iOS7 Remote Notification");
         
        // iOS 10 以下 Required
        if ([[UIDevice currentDevice].systemVersion floatValue] < 10.0) {
            //iOS10以下的通知處理代碼
            return;
        }
        completionHandler(UIBackgroundFetchResultNewData);
    }

//iOS10新增:處理前臺收到通知的代理方法
   -(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler{
    NSDictionary * userInfo = notification.request.content.userInfo;

    if([notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
        NSLog(@"--ios10 官方-前臺收到push通知:%@",userInfo);
     
    }else{

        NSLog(@"--ios10 官方-前臺收到本地通知:{\n body:%@,\n title:%@,subtitle:%@,badge:%@,\nsound:%@,\nuserinfo:%@\n}",notification.request.content.body,notification.request.content.title,notification.request.content.subtitle, notification.request.content.badge,notification.request.content.sound,userInfo);
    }
 completionHandler(UNNotificationPresentationOptionBadge|UNNotificationPresentationOptionSound|UNNotificationPresentationOptionAlert);
}

//iOS10新增:處理后臺點擊通知的代理方法
-(void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler{
    NSDictionary * userInfo = response.notification.request.content.userInfo;
    if([response.notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
        NSLog(@"--ios10 官方-后臺收到push通知:%@",userInfo);

    }else{
        NSLog(@"--ios10 官方-后臺收到本地通知:{\n body:%@,\n title:%@,subtitle:%@,badge:%@,\nsound:%@,\nuserinfo:%@\n}",response.notification.request.content.body,response.notification.request.content.title,response.notification.request.content.subtitle, response.notification.request.content.badge,response.notification.request.content.sound,userInfo);

    }
        completionHandler();
    
}

4恋技、補(bǔ)充說明:


1)獲取App 運行狀態(tài):
 UIApplicationState state = [UIApplication sharedApplication].applicationState;

說明:
UIApplication.h
ypedef NS_ENUM(NSInteger, UIApplicationState) {
    UIApplicationStateActive,
    UIApplicationStateInactive,
    UIApplicationStateBackground
} NS_ENUM_AVAILABLE_IOS(4_0);
2)iOS 10使用代理方法需要在delegate添加代理逻族,如:
//Apple官方 - iOS 10 新增的delegate:
@interface AppDelegate ()<UNUserNotificationCenterDelegate>

//Apple官方 - iOS10 APNs注冊:
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
    [center requestAuthorizationWithOptions:(UNAuthorizationOptionSound|UNAuthorizationOptionAlert|UNAuthorizationOptionBadge) completionHandler:^(BOOL granted, NSError * _Nullable error) {
        if (granted) {
            [[UIApplication sharedApplication] registerForRemoteNotifications];
        }
    }];
    
    center.delegate = self;

ps:此文檔在JPush官方文檔【獲取APNs(通知)內(nèi)容】的基礎(chǔ)上修改聘鳞。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末抠璃,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子窿春,更是在濱河造成了極大的恐慌采盒,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件良蛮,死亡現(xiàn)場離奇詭異决瞳,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)痴颊,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門屡贺,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蠢棱,“玉大人,你說我怎么就攤上這事甩栈⌒合桑” “怎么了?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵量没,是天一觀的道長玉转。 經(jīng)常有香客問我,道長殴蹄,這世上最難降的妖魔是什么究抓? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮袭灯,結(jié)果婚禮上刺下,老公的妹妹穿的比我還像新娘稽荧。我一直安慰自己橘茉,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布姨丈。 她就那樣靜靜地躺著捺癞,像睡著了一般。 火紅的嫁衣襯著肌膚如雪构挤。 梳的紋絲不亂的頭發(fā)上髓介,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天,我揣著相機(jī)與錄音筋现,去河邊找鬼唐础。 笑死,一個胖子當(dāng)著我的面吹牛矾飞,可吹牛的內(nèi)容都是我干的一膨。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼洒沦,長吁一口氣:“原來是場噩夢啊……” “哼豹绪!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起申眼,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤瞒津,失蹤者是張志新(化名)和其女友劉穎蝉衣,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體巷蚪,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡病毡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了屁柏。 大學(xué)時的朋友給我發(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
  • 我被黑心中介騙來泰國打工穷娱, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人运沦。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓泵额,卻偏偏與公主長得像,于是被迫代替她去往敵國和親携添。 傳聞我的和親對象是個殘疾皇子嫁盲,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

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