iOS開發本地推送

來源:互聯網
上載者:User

標籤:context   功能   iap   targe   trigger   bubuko   資源   bad   時間   

1、簡介

  本地通知是由本地應用觸發的,它是基於時間行為的一種通知形式,例如鬧鐘定時、待辦事項提醒,又或者一個應用在一段時候後不使用通常會提示使用者使用此應用等都是本地通知。

 

2、建立UILocalNotification 

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after application launch.        UILocalNotification *localNotifi = [UILocalNotification new];    localNotifi.fireDate = [NSDate dateWithTimeIntervalSinceNow:5];//發送時間    localNotifi.alertBody = @"這是一條本地推送";//設定提醒內容    localNotifi.soundName = UILocalNotificationDefaultSoundName;//設定推送聲音    localNotifi.applicationIconBadgeNumber = 100;//設定app右上方表徵圖標記//    localNotifi.hasAction = YES;//鎖屏時是否顯示內容,預設yes 設定提醒按鈕文字//    localNotifi.alertAction = @"好的";//按鈕文字    localNotifi.timeZone = [NSTimeZone defaultTimeZone];//設定時區 [NSTimeZone defaultTimeZone],跟隨手機的時區    localNotifi.repeatInterval = NSCalendarUnitMinute;//設定重複每隔多久發送一次 最小單位分鐘 。0代表不重複,此屬性設定了, 那麼調度池不會用完釋放!需要手動刪除通知對象    localNotifi.repeatCalendar = [NSCalendar calendarWithIdentifier:@"NSCalendarIdentifierChinese"];//設定依賴的日曆曆法,預設就是跟隨系統走,曆法不一樣每月重複間隔時間也不一樣(如農曆是30天)    if (@available(iOS 8.2, *)) {        localNotifi.alertTitle = @"本地推送呵呵";    } else {        // Fallback on earlier versions    }//設定彈出框標題    UIMutableUserNotificationCategory *category = [UIMutableUserNotificationCategory new];//使用可變子類    category.identifier = @"分類";//設定標識符,注意與發送通知設定的category標識符一致    // 設定前台按鈕,點擊後能使程式回到前台的叫做前台按鈕    UIMutableUserNotificationAction *actionLeft = [UIMutableUserNotificationAction new];    actionLeft.identifier = @"left";    actionLeft.activationMode  = UIUserNotificationActivationModeForeground;    actionLeft.title = @"前台按鈕";    // 設定後台按鈕,點擊後程式還在後台執行,如QQ的訊息    UIMutableUserNotificationAction *actionRight = [UIMutableUserNotificationAction new];    actionRight.identifier = @"right";    actionRight.activationMode = UIUserNotificationActivationModeBackground;    actionRight.title = @"後台按鈕";    [category setActions:@[actionLeft,actionRight] forContext:UIUserNotificationActionContextDefault];    NSSet *catogorySet = [NSSet setWithObject:category];    localNotifi.category = @"分類";//    在哪個地區發送通知, 進入這個地區就發送這個通知,可以進來調一次,出去調一次//    @property(nullable, nonatomic,copy) CLRegion *region NS_AVAILABLE_IOS(8_0);//    @property(nonatomic,assign) BOOL regionTriggersOnce NS_AVAILABLE_IOS(8_0);地區是否只檢測一次//    @property(nullable, nonatomic,copy) NSString *alertLaunchImage;設定啟動圖片//    @property(nullable, nonatomic,copy) NSDictionary *userInfo;推送攜帶參數//    @property (nullable, nonatomic, copy) NSString *category NS_AVAILABLE_IOS(8_0);添加下拉快速回複功能    if (iOS8_OR_LATER) {//        UIUserNotificationType 枚舉://        UIUserNotificationTypeNone    = 0,//        UIUserNotificationTypeBadge   = 1 << 0, //表徵圖標記//        UIUserNotificationTypeSound   = 1 << 1, //聲音//        UIUserNotificationTypeAlert   = 1 << 2, //提醒////        categories:用於添加下拉快速回複功能        UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge|UIUserNotificationTypeSound|UIUserNotificationTypeAlert categories:catogorySet];        [[UIApplication sharedApplication] registerUserNotificationSettings:settings];    }    //    調度本地推播通知(調度後在特定時間fireData發出)//    [[UIApplication sharedApplication] scheduleLocalNotification:localNotifi];    //    立即發送本地通知    [[UIApplication sharedApplication] presentLocalNotificationNow:localNotifi];    // 處理退出後通知的點擊,程式啟動後擷取通知對象,如果是初次開機還沒有發送通知,那第一次通知對象為空白,沒必要去處理通知    if (launchOptions[UIApplicationLaunchOptionsLocalNotificationKey]) {        UILocalNotification *localNotifi = launchOptions[UIApplicationLaunchOptionsLocalNotificationKey];        [self changeLocalNotifi:localNotifi];    }        return YES;}

 

3、移除推播通知

- (void)deleteLocalNotifi{//    刪除所有通知    [[UIApplication sharedApplication] cancelAllLocalNotifications];    //    刪除指定通知(發出到期的推送不在此數組)    NSArray *notifiArr = [[UIApplication sharedApplication] scheduledLocalNotifications];    for (UILocalNotification *localNoti in notifiArr) {        //根據UserInfo的值,來查看這個是否是你想要刪除的通知        if (localNoti.userInfo) {            [[UIApplication sharedApplication] cancelLocalNotification:localNoti];        }    }}

 

4、就收到推送處理方法

//處理通知- (void)changeLocalNotifi:(UILocalNotification *)localNotifi{    // 如果在前台直接返回    if ([UIApplication sharedApplication].applicationState == UIApplicationStateActive) {        return;    }    // 擷取通知資訊//    localNotifi.userInfo}//接收到本地通知後調用 程式前台或背景時候才有用,退出無法接收到訊息- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification{    [self changeLocalNotifi:notification];}

 

5、前台和後台按鈕處理方法

//前台和後台按鈕處理方法- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification completionHandler:(void (^)(void))completionHandler{    // 我們可以在這裡擷取標識符,根據標識符進行判斷是前台按鈕還是後台按鈕還是神馬按鈕,進行相關邏輯處理(如回複訊息)    NSLog(@"identifier : %@",identifier);    // 一旦接受必須調用的方法(告訴系統什麼時候結束,系統自己對內部進行資源撫平)    completionHandler();}

 

 

6、遠程推送

  https://www.jianshu.com/p/25e267037f6e

iOS開發本地推送

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.