1、在項目 target 中,打開Capabilitie —> Push Notifications
,並會自動在項目中生成 .entitlement 文件。(很多同學升級後,獲取不到 deviceToken,大概率是由於沒開這個選項)
Capabilitie —> Push Notifications
自動生成 .entitlement
2、確保添加了 UserNotifications.framework
,並 import
到 AppDelegate
,記得實現 UNUserNotificationCenterDelegate
。
#import <UserNotifications/UserNotifications.h> @interface AppDelegate : UIResponder <UIApplicationDelegate,UNUserNotificationCenterDelegate> @end
3、在 didFinishLaunchingWithOptions
方法中,首先實現 UNUserNotificationCenter delegate
,並使用 UIUserNotificationSettings
請求權限。
//注意,關於 iOS10 系統版本的判斷,可以用下面這個宏來判斷。不能再用截取字符的方法。 #define SYSTEM_VERSION_GRATERTHAN_OR_EQUALTO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) -(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ if(SYSTEM_VERSION_GRATERTHAN_OR_EQUALTO(@"10.0")){ UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter]; center.delegate = self; [center requestAuthorizationWithOptions:(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge) completionHandler:^(BOOL granted, NSError * _Nullable error){ if( !error ){ [[UIApplication sharedApplication] registerForRemoteNotifications]; } }]; } return YES; }
4、最後實現以下兩個回調。
//====================For iOS 10==================== -(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler{ NSLog(@"Userinfo %@",notification.request.content.userInfo); //功能:可設置是否在應用內彈出通知 completionHandler(UNNotificationPresentationOptionAlert); } //點擊推送消息後回調 -(void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)())completionHandler{ NSLog(@"Userinfo %@",response.notification.request.content.userInfo); }
注意:需要根據系統版本號來判斷是否使用新的 UserNotifications.framework
,因此,不要著急刪除 iOS 10 以前的代碼。
總結
以上就是關於iOS10添加推送功能時的注意點和問題總結,希望這篇文章對大家開發iOS推送功能能有所幫助,如果有疑問大家可以留言交流。