- (BOOL)isPushEnabled { UIApplication *application = [UIApplication sharedApplication]; return application.enabledRemoteNotificationTypes != UIRemoteNotificationTypeNone; }
Example:
NSLog(@"APNS are %@enabled.", [self isPushEnabled] ? @"" : @"not ");