推送通知跟NSNotification不一樣
1.NSNotification是抽象的,不可見的
2.推送通知是可見的php
iOS中提供了2中推送通知
1.本地推送通知(Local Notification)
2.遠程推送通知(Remote Notification)服務器
推送的做用:可讓不在前臺運行的app,告知客戶app內部發生的事情.(QQ消息推送,微信消息推送等等)微信
推送通知的呈現效果:
1.在屏幕頂部顯示的一條橫幅
2.在屏幕中間彈出一個UIAlertView
3.在鎖屏界面顯示一塊橫幅
4.跟新app圖標的數字
5.播放音效app
1.不須要服務器支持(無需聯網)就能發出的推送通知
2.使用場景: 定時類任務(鬧鐘,簡單的遊戲等等)fetch
本地通知推送的實現很簡單:
1.建立本地推送通知對象
[[UILocalNotification alloc] init]
建立一個本地通知
2.設置本地通知的相關屬性
必須設置的屬性
2.1.推送通知的觸發時間(什麼時候發出推送通知)
@property(nonatomic,copy) NSDate *fireDate
2.2.推送通知的具體內容
@property(nonatomic,copy) NSString *alertBody
2.3.在鎖屏時顯示的動做標題(完整測標題:"滑動來" + alertAction)
@property(nonatomic,copy) NSString *alertAction
2.4.設置鎖屏界面alertAction是否有效
localNote.hasAction = YES;
2.5.app圖標數字
@property(nonatomic,assign) NSInteger applicationIconBadgeNumber
2.6.調度本地推送通知(調度完畢後,推進通知會在特定時間fireDate發出)
[[UIApplication shareApplication] scheduleLocalNotification:ln]
能夠進行設置的設置
2.7.設置通知中心通知的標題
localNote.alertTitle = @"222222222222";
2.8.設置音效(若是不設置就是系統默認的音效, 設置的話會在mainBundle中查找)
localNote.soundName = @"buyao.wav";
2.9.每隔多久重複發一次推送通知
@property(nonatomic) NSCalendarUnit repeatInterval
2.10.點擊推送通知打開app時顯示的啓動圖片(mainBundle 中提取圖片)
@property(nonatomic,copy) NSSring *alertLaunchImage
2.11.附加的額外信息
@property(nonatomic,copy) NSDictionary *userInfo
2.12.時區
@property(nonatomic,copy) NSTimeZone *timeZone
(通常設置爲[NSTimeZone defaultTimeZone],跟隨手機的時區)ui
--代碼實現過程:atom
/* @property(nonatomic,copy) NSDate *fireDate; @property(nonatomic,copy) NSTimeZone *timeZone; 時區 @property(nonatomic) NSCalendarUnit repeatInterval; 重複間隔(枚舉) @property(nonatomic,copy) NSCalendar *repeatCalendar; 重複日期(NSCalendar) @property(nonatomic,copy) CLRegion *region 設置區域(設置當進入某一個區域時,發出一個通知) @property(nonatomic,assign) BOOL regionTriggersOnce YES,只會在第一次進入某一個區域時發出通知.NO,每次進入該區域都會發通知 @property(nonatomic,copy) NSString *alertBody; @property(nonatomic) BOOL hasAction; 是否隱藏鎖屏界面設置的alertAction @property(nonatomic,copy) NSString *alertAction; 設置鎖屏界面一個文字 @property(nonatomic,copy) NSString *alertLaunchImage; 啓動圖片 @property(nonatomic,copy) NSString *alertTitle @property(nonatomic,copy) NSString *soundName; @property(nonatomic) NSInteger applicationIconBadgeNumber; @property(nonatomic,copy) NSDictionary *userInfo; // 設置通知的額外的數據 */ - (IBAction)addLocalNote:(id)sender { // 1.建立一個本地通知 UILocalNotification *localNote = [[UILocalNotification alloc] init]; // 2.設置本地通知的一些屬性(通知發出的時間/通知的內容) // 2.1.設置通知發出的時間 localNote.fireDate = [NSDate dateWithTimeIntervalSinceNow:5.0]; // 2.2.設置通知的內容 localNote.alertBody = @"吃飯了嗎?"; // 2.3.設置鎖屏界面的文字 localNote.alertAction = @"查看具體的消息"; // 2.4.設置鎖屏界面alertAction是否有效 localNote.hasAction = YES; // 2.5.設置經過點擊通知打開APP的時候的啓動圖片(不管字符串設置成什麼內容,都是顯示應用程序的啓動圖片) localNote.alertLaunchImage = @"111"; // 2.6.設置通知中心通知的標題 localNote.alertTitle = @"222222222222"; // 2.7.設置音效 localNote.soundName = @"buyao.wav"; // 2.8.設置應用程序圖標右上角的數字 localNote.applicationIconBadgeNumber = 1; // 2.9.設置通知以後的屬性 localNote.userInfo = @{@"name" : @"張三", @"toName" : @"李四"}; // 3.調度通知 [[UIApplication sharedApplication] scheduleLocalNotification:localNote]; }
當消息被推送過來時,咱們須要點擊推送消息,來完成一些特定的任務.不如更新界面什麼的(監聽本地推送通知的點擊)加密
1.app沒有關閉,只是一直隱藏在後臺
讓app進入前臺,並會調用AppDelegate的下面的方法(並不是從新啓動app)
spa
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification { // 在這裏寫跳轉代碼 // 若是是應用程序在前臺,依然會收到通知,可是收到通知以後不該該跳轉 if (application.applicationState == UIApplicationStateActive) return; if (application.applicationState == UIApplicationStateInactive) { // 當應用在後臺收到本地通知時執行的跳轉代碼 [self jumpToSession]; } NSLog(@"%@", notification); } - (void)jumpToSession { UILabel *redView = [[UILabel alloc] init]; redView.backgroundColor = [UIColor redColor]; redView.frame = CGRectMake(0, 100, 300, 400); redView.numberOfLines = 0; // redView.text = [NSString stringWithFormat:@"%@", launchOptions]; [self.window.rootViewController.view addSubview:redView]; }
2.app已經被關閉(進程被殺死)
3d
- (BOOL)application:(UIApplication *)application didFinishLaunchWithOptions:(NSDictionary *)launchOptions;
在iOS8.0
之後本地通知有了一些變化,若是要使用本地通知,須要獲得用戶的許可.
didFinishLaunchWithOptions
方法中添加以下代碼:
#define IS_iOS8 ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0) if (IS_iOS8) { UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge | UIUserNotificationTypeAlert | UIUserNotificationTypeSound categories:nil]; [application registerUserNotificationSettings:settings]; }
-----代碼實現相關操做
#define IS_iOS8 ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0) @interface AppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { /* UIUserNotificationTypeNone = 0, 不發出通知 UIUserNotificationTypeBadge = 1 << 0, 改變應用程序圖標右上角的數字 UIUserNotificationTypeSound = 1 << 1, 播放音效 UIUserNotificationTypeAlert = 1 << 2, 是否運行顯示橫幅 */ [application setApplicationIconBadgeNumber:0]; if (IS_iOS8) { UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge | UIUserNotificationTypeAlert | UIUserNotificationTypeSound categories:nil]; [application registerUserNotificationSettings:settings]; } // 若是是正常啓動應用程序,那麼launchOptions參數是null // 若是是經過其它方式啓動應用程序,那麼launchOptions就值 if (launchOptions[UIApplicationLaunchOptionsLocalNotificationKey]) { // 當被殺死狀態收到本地通知時執行的跳轉代碼 // [self jumpToSession]; UILabel *redView = [[UILabel alloc] init]; redView.backgroundColor = [UIColor redColor]; redView.frame = CGRectMake(0, 100, 300, 400); redView.numberOfLines = 0; redView.text = [NSString stringWithFormat:@"%@", launchOptions]; [self.window.rootViewController.view addSubview:redView]; } return YES; }
1.從遠程服務器推送給客戶端的通知(須要聯網)
2.遠程推送服務, 蘋果起名爲:APNS (Apple Push Notification Services)
解決問題:只要聯網了, 就可以接收到服務器推送的遠程通知
使用須知:
全部的蘋果設備,在聯網狀態下,都會與蘋果服務器創建長鏈接.
1.長鏈接:一直鏈接,客戶端與服務器
2.長鏈接做用:
1>事件校準
2>系統升級
3>查找個人iPhone等....
3.長鏈接的好處
1>數據傳輸速度快
2>數據保持最新狀態
1.得到deviceToken
的過程
1>客戶端向蘋果服務APNS,發送設備的UDID和英語的Bundle Identifier.
2>經蘋果服務器加密生成一個deviceToken
3>將當前用戶的deviceToken(用戶標識),發送給本身應用的服務器
4>本身的服務器,將獲得的deviceToken,進行保存
2.利用deviceToken
進行數據傳輸,推送通知
5>須要推送的時候,將消息和deviceToken一塊兒發送給APNS,蘋果服務器,再經過deviceToken找到用戶,並將消息發給用戶
這裏再也不演示關於證書的配置, 簡單的只進行說明步驟:
1> 建立明確的AppID,只有明確的AppID才能進行一些特殊的操做
2>真機調試的APNS SSL證書
3>發佈程序的APNS SSL證書
4>生成描述文件
[依次安裝證書, 再裝描述]
1.客戶端若是想要接收APNs的遠程推送通知,必須先進行註冊(獲得用戶受權)
通常在APP啓動完畢後就立刻進行註冊
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { if ([[UIDevice currentDevice].systemVersion doubleValue] >= 8.0) { // 1.註冊UserNotification,以獲取推送通知的權限 UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge categories:nil]; [application registerUserNotificationSettings:settings]; // 2.註冊遠程推送 [application registerForRemoteNotifications]; } else { [application registerForRemoteNotificationTypes:UIRemoteNotificationTypeNewsstandContentAvailability | UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound]; } return YES; }
2.註冊成功後, 調用AppDelegate的方法,獲取到用戶的deviceToken
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { // <32e7cf5f 8af9a8d4 2a3aaa76 7f3e9f8e 1f7ea8ff 39f50a2a e383528d 7ee9a4ea> // <32e7cf5f 8af9a8d4 2a3aaa76 7f3e9f8e 1f7ea8ff 39f50a2a e383528d 7ee9a4ea> NSLog(@"%@", deviceToken.description); }
3.點擊推送通知,和本地同樣有兩種情況.
1> app沒有關閉,只是一直隱藏在後臺
讓app進入前臺, 並調用下面的方法(app沒有從新啓動)
過時的方法:
// 當接受到遠程退職時會執行該方法(當進入前臺或者應用程序在前臺) - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo { NSLog(@"%@", userInfo); UIView *redView = [[UIView alloc] init]; redView.backgroundColor = [UIColor redColor]; redView.frame = CGRectMake(100, 100, 100, 100); [self.window.rootViewController.view addSubview:redView]; }
蘋果系統建議使用下面的方法:
/* 1.開啓後臺模式 2.調用completionHandler,告訴系統你如今是否有新的數據更新 3.userInfo添加一個字段:"content-available" : "1" : 只要添加了該字段,接受到通知都會在後臺運行 */ - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { NSLog(@"%@", userInfo); UIView *redView = [[UIView alloc] init]; redView.backgroundColor = [UIColor redColor]; redView.frame = CGRectMake(100, 100, 100, 100); [self.window.rootViewController.view addSubview:redView]; completionHandler(UIBackgroundFetchResultNewData); }
2>app已經關閉,須要從新開啓,---基本實現方法和本地通知yi'zhi