遇到這錯誤:Attempting to badge the application icon but haven't received permission from the user to badge the application,請問如何解決
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)
{
[[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings
settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge)
categories:nil]];
}
這個在iOS上要用戶授權。
然後才能使用。