本地推送UILocalNotification的實(shí)現(xiàn)-創(chuàng)新互聯(lián)

最近看唐巧的技術(shù)博客,有一篇博文提到如何改進(jìn)客戶端升級(jí)提醒功能(原文在這里: http://www.devtang.com/blog/2012/11/10/how-to-design-upgrade-notice/ ),采用的就是本地推送功能來提升用戶體驗(yàn)。此外他還提到當(dāng)時(shí)很火的一件事:一個(gè)技術(shù)男通過推送彈框向女友求愛。最簡(jiǎn)單的實(shí)現(xiàn)方式也是采用本地推送UILocalNotification。于是我從網(wǎng)上也查了些資料,自己學(xué)習(xí)了下UILocalNotification,先對(duì)其進(jìn)行一個(gè)總結(jié)。

為藤縣等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及藤縣網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都做網(wǎng)站、網(wǎng)站制作、藤縣網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!

(1)一般推送消息都是程序在后臺(tái)的狀態(tài)下出現(xiàn):屏幕上方下滑出現(xiàn)提示,且app的badge數(shù)目加一。因此,在這種情況下,本地推送的創(chuàng)建代碼如下:

- (void)applicationDidEnterBackground:(UIApplication *)application {
    //創(chuàng)建實(shí)例
    UILocalNotification *localNotification=[[UILocalNotification alloc] init];
   if(localNotification) {//主要是判斷當(dāng)前系統(tǒng)是否支持本地推送
      //創(chuàng)建推送激發(fā)時(shí)間
      NSDateFormatter *fm=[[NSDateFormatter alloc] init];
      [fm setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
      NSDate *fireDate=[fm dateFromString:@"2015-8-7 09:49:00"];
      
      //設(shè)置本地推送實(shí)例屬性
      localNotification.fireDate=fireDate;//激發(fā)時(shí)間
      localNotification.repeatInterval=NSCalendarUnitDay;//重復(fù)頻率
      localNotification.timeZone=[NSTimeZone defaultTimeZone];//時(shí)區(qū)
      localNotification.soundName=UILocalNotificationDefaultSoundName;//提醒聲音
      
      localNotification.alertBody=@"This is the message body";//推送的消息體
      localNotification.alertAction=@"OK打開應(yīng)用";//鎖屏?xí)r,消息下方有“滑動(dòng)來OK打開應(yīng)用”
      localNotification.applicationIconBadgeNumber=1;//app圖標(biāo)右上角的消息個(gè)數(shù)
      
      //userInfo鍵值對(duì)用于區(qū)分不同的LocalNotification,從而可以刪除對(duì)應(yīng)的localNotification
      NSDictionary *dic=@{@"name":@"Layne"};
      localNotification.userInfo=dic;
      
      [[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
   }
}

這樣一來,在app進(jìn)入到后臺(tái)之后,在設(shè)定的時(shí)間就會(huì)彈出推送信息。

(2)還有一種情況,就是程序一直在前臺(tái)運(yùn)行,這種情況下app也是會(huì)收到推送消息的,但是不會(huì)有提示,在appDelegate中有個(gè)專門的函數(shù)用于處理這種情況:

-(void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification{
    UIAlertController *alert=[UIAlertController alertControllerWithTitle:@"Title"
                                                                 message:@"This is push message!"
                                                          preferredStyle:UIAlertControllerStyleAlert];
    
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];
    UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"好的" style:UIAlertActionStyleDefault handler:nil];
    
    [alert addAction:cancelAction];
    [alert addAction:okAction];
    
    [self.window.rootViewController presentViewController:alert animated:YES completion:nil];
    
}

在這個(gè)函數(shù)里我們可以定義AlertController進(jìn)行專門的彈框提醒。

 (3)最后,取消掉本地通知有兩種方式:

//取消所有的本地通知
[[UIApplication sharedApplication] cancelAllLocalNotifications];
//取消特定的本地通知
[[UIApplication sharedApplication] cancelLocalNotification:localNotification];

(4)localNotification.userInfo的使用:

//獲取本地推送數(shù)組
NSArray *localArray = [[UIApplication sharedApplication] scheduledLocalNotifications];

//聲明本地通知對(duì)象
UILocalNotification *localNoti;
if(localArray){
    for(UILocalNotification *noti  in localArray){
        NSDictionary *dict=noti.userInfo;
        if(dict){
            if([dict["name"] isEqualToString:@"Layne"]){
                //do something to the localnotification
            }
            break;
        }
    }
}

即可通過userInfo找到對(duì)應(yīng)的localNotification,從而進(jìn)行一些操作(例如取消本地通知等)。

(5)自定義與推送通知的交互:

用到三個(gè)類:

UIUserNotificationAction(UIMutableUserNotificationAction): 定義具體的操作(按鈕)。

UIUserNotificationCategory(UIMutableUserNotificationCategory):包含一組UIUserNotificationAction

UIUserNotificationSettings:Notification的配置信息

具體代碼如下:

//定義第一個(gè)action(按鈕)
UIMutableUserNotificationAction *action1 = [[UIMutableUserNotificationAction alloc] init];//第一個(gè)按鈕
action1.identifier = @"ACTION_1";//按鈕的標(biāo)識(shí)
action1.title=@"Accept";//按鈕的標(biāo)題
action1.activationMode = UIUserNotificationActivationModeForeground;//當(dāng)點(diǎn)擊的時(shí)候啟動(dòng)程序
action1.authenticationRequired = NO;//不需要認(rèn)證(解鎖)
action1.destructive = NO;

//定義第二個(gè)action(按鈕)
UIMutableUserNotificationAction *action2 = [[UIMutableUserNotificationAction alloc] init];  //第二按鈕
action2.identifier = @"ACTION_2";
action2.title=@"Reject";
action2.activationMode = UIUserNotificationActivationModeBackground;//當(dāng)點(diǎn)擊的時(shí)候不啟動(dòng)程序,在后臺(tái)處理
action2.authenticationRequired = YES;//需要解鎖才能處理,如果action.activationMode = UIUserNotificationActivationModeForeground;則這個(gè)屬性被忽略;
action2.destructive = YES;

//定義一個(gè)category
UIMutableUserNotificationCategory *category = [[UIMutableUserNotificationCategory alloc] init];
category.identifier = @"LEI";//這組動(dòng)作的唯一標(biāo)示
[category setActions:@[action1,action2] forContext:UIUserNotificationActionContextDefault];

//定義settings
UIUserNotificationSettings *uns = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:[NSSet setWithObjects:categorys, nil]];
//注冊(cè)settings
[[UIApplication sharedApplication] registerUserNotificationSettings:uns];

關(guān)鍵一步:
//要把本地通知的category屬性設(shè)置為和之前定義的category一樣,否則不會(huì)顯示按鈕
localNotification.category = @"LEI";

最后:
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
......

之后再appDelegate中會(huì)有對(duì)應(yīng)的事件處理函數(shù):

-(void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification completionHandler:(void (^)())completionHandler{
    
}

注:appDelegate中有眾多的事件處理函數(shù),例如:

-(void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings

-(void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification

-(void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification completionHandler:(void (^)())completionHandler

-(void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken

-(void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error

-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo

-(void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo completionHandler:(void (^)())completionHandler

這些事件處理函數(shù)可用來處理推送通知(本地推送和遠(yuǎn)程推送)。

        以上就是我對(duì)本地推送學(xué)習(xí)的所有總結(jié),希望和大家一起學(xué)習(xí)進(jìn)步。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

當(dāng)前名稱:本地推送UILocalNotification的實(shí)現(xiàn)-創(chuàng)新互聯(lián)
本文URL:http://muchs.cn/article26/pgcjg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、網(wǎng)站制作、品牌網(wǎng)站制作、商城網(wǎng)站、Google、微信小程序

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都seo排名網(wǎng)站優(yōu)化