iOS客戶端本地推送實現代碼
更新時間:2016年11月28日 17:30:27 作者:遛馬
這篇文章主要介紹了iOS客戶端本地推送實現代碼,并確定程序中只有一個彈出框,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了iOS本地推送的具體代碼,供大家參考,具體內容如下
首先創(chuàng)建全局的本地通知對象及彈出框
// 彈出本地消息 @property(nonatomic,strong)UILocalNotification *localNotification; @property(nonatomic,strong)UIAlertController *alertcontrol; 其次在代碼中實現如下: - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler: (void (^)(UIBackgroundFetchResult))completionHandler { // 判斷程序是否在打開狀態(tài),即是否在前臺運行的狀態(tài) if (application.applicationState == UIApplicationStateActive) { // 如果之前已經接受到消息,并且用戶未對彈出框進行處理,關閉原來彈出框 if (self.localNotification) { [self.alertcontrol dismissViewControllerAnimated:YES completion:nil]; } [self bulidLocationNotification:application userinfo:userInfo]; }else{ // 判斷程序是否未打開狀態(tài),即是否在后臺運行或關閉狀態(tài),極光推送設置角標 if ([application applicationIconBadgeNumber]>0) { [JPUSHService setBadge:[application applicationIconBadgeNumber]]; } } [JPUSHService handleRemoteNotification:userInfo]; NSLog(@"收到通知:%@", [self logDic:userInfo]); completionHandler(UIBackgroundFetchResultNewData); } - (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification { // 彈出消息 if (self.localNotification) { self.alertcontrol = [UIAlertController alertControllerWithTitle:@"" message:self.localNotification.alertBody preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *action = [UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { self.localNotification = nil; self.alertcontrol = nil; }]; [self.alertcontrol addAction:action]; [self.window.rootViewController presentViewController:self.alertcontrol animated:YES completion:nil]; } } // 創(chuàng)建本地推送消息 -(void)bulidLocationNotification:(UIApplication *)application userinfo:(NSDictionary *)userInfo{ self.localNotification = [[UILocalNotification alloc]init]; self.localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:1]; self.localNotification.alertBody = [[userInfo objectForKey:@"aps"] objectForKey:@"alert"]; self.localNotification.alertAction = @"確定"; self.localNotification.soundName = @"sound.caf"; self.localNotification.userInfo = userInfo; [application presentLocalNotificationNow:self.localNotification]; }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
Xcode 9下適配iPhoneX導致iOS 10不兼容問題的解決方法
這篇文章主要給大家介紹了關于Xcode 9下適配iPhoneX導致iOS 10不兼容問題的解決方法,文中通過圖文介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧。2018-04-04iOS面試中如何優(yōu)雅回答B(yǎng)lock導致循環(huán)引用的問題
這篇文章主要給大家介紹了iOS面試中關于如何優(yōu)雅回答B(yǎng)lock導致循環(huán)引用的問題的相關資料,文中通過圖文介紹的非常相信,相信對大家具有一定的參考價值,需要的朋友們下面來一起看看吧。2017-03-03