Push Notifications in iOS 10
The UserNotifications framework (UserNotifications.framework) supports the delivery and handling of local and remote notifications.( The new framework introduced with iOS 10 SDK. ) //*Steps for implement code to handle push notifications in iOS 10 *Import UserNotifications.framework in your AppDelegate file #import < UserNotifications/UserNotifications.h > **Add UNUserNotificationCenterDelegate. #import <UserNotifications/UserNotifications.h> @interface AppDelegate : UIResponder <UIApplicationDelegate, UNUserNotificationCenterDelegate> ** Register for push notification Before registration check the version of iOS and then based on versions do the code. For iOS 7 code was different, fro iOS 8 & 9 code was different and again for iOS 10 code is different. As per my opinion you have to set the deployment target to iOS 8 or iOS 9 and later. Define constant for version check : #import "AppDelegate.h" #define SYSTEM...