iOS 8中的推送通知不起作用.
错误显示:
implicit conversion of 'unsigned long 'UIUserNotificationSettings *' is disallowed with arc
Run Code Online (Sandbox Code Playgroud)
码:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[application registerUserNotificationSettings:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge)];
return YES;
}
Run Code Online (Sandbox Code Playgroud)
我正在使用ios 8.0和xcode 6 beta.