標籤: enabledRemoteNotificiOS通知iOS是否開啓推送開關currentUserNotificatios
1.最近在作app內部的推送開關功能。 這樣顧客能夠本身定義推送給他的內容,屏蔽不想要的一些煩人推送。 服務器
在開發過程當中, 若是顧客打開推送開關的時候,也已經向服務器發送指令,進行推送開關同步,給它說這個用戶已經打開了A推送,如今服務器推送A推送給客戶端, 這時候照說,客服端是能夠收到通知的,可是客服端卻沒有收到。 這是爲何呢? 很簡單的一個問題,原來是顧客沒有在系統通知處打開app的通知開關,因此收不到推送是正常現象。 app
那如今就產生了一個需求:spa
用戶在進行設置推送開關的時候,當用戶打開推送開關爲開的時候,須要去判斷 系統通知處的 推送開關用戶有沒有進行設置?.net
網上這樣的代碼都是一大把,關於怎麼去檢測系統通知有沒有打開,可是,發現運用到程序中,沒什麼鳥用, 會一直提示說,用戶沒有打開推送。code
下面就到了貼代碼的環節了,首先先看下這段代碼:對象
- if ([[UIApplication sharedApplication] enabledRemoteNotificationTypes] == UIRemoteNotificationTypeNone) { //判斷用戶是否打開通知開關
- }
[objc] view plain copyblog


- typedef NS_OPTIONS(NSUInteger, UIRemoteNotificationType) {//這個是用戶當前通知的幾種狀態,第一種就是用戶沒有開大通知開關
- UIRemoteNotificationTypeNone = 0,
- UIRemoteNotificationTypeBadge = 1 << 0,
- UIRemoteNotificationTypeSound = 1 << 1,
- UIRemoteNotificationTypeAlert = 1 << 2,
- UIRemoteNotificationTypeNewsstandContentAvailability = 1 << 3,
- } NS_ENUM_DEPRECATED_IOS(3_0, 8_0, "Use UIUserNotificationType for user notifications and registerForRemoteNotifications for receiving remote notifications instead.") __TVOS_PROHIBITED;
我在程序中就是用到了這個方法,去進行檢測,用戶有沒有打開推送開關, 卻忽視了 ip
- NS_ENUM_DEPRECATED_IOS(3_0, 8_0, "Use UIUserNotificationType for user notifications and registerForRemoteNotifications for receiving remote notifications instead.") __TVOS_PROHIBITED

經過上面的圖,能夠看到此方法在iOS8.0就廢棄了,雖說並無被移除,可是也要用他最新建議的方法去進行版本的兼容,如今加上在iOS9.0上用這個方法進行判斷沒有任何做用,如今就用新版的判斷方法。下面是新版的判斷方法。開發
[objc] view plain copy


- if ([[UIApplication sharedApplication] currentUserNotificationSettings].types == UIRemoteNotificationTypeNone) {
- }
注意: [objc] view plain copy


- currentUserNotificationSettings 是一個對象,屬於UIUserNotificationSettings類
因此.types切莫忘記。
總結:
最完善的作法就是,進行二者兼容 iOS7下的也要兼容, iOS7以上的我更要兼容啦,最完善的作法
#define IOS8 ([[[UIDevice currentDevice] systemVersion] doubleValue] >=8.0 ? YES : NO)
- if (IOS8) { //iOS8以上包含iOS8
- if ([[UIApplication sharedApplication] currentUserNotificationSettings].types == UIRemoteNotificationTypeNone) {
- }
- }else{ // ios7 一下
- if ([[UIApplication sharedApplication] enabledRemoteNotificationTypes] == UIRemoteNotificationTypeNone) {
- }
- }