标签:ios8 uilocalnotification 和之前的变化
ios的本地消息需要用户允许后才可以使用
代码如下
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:settings];
IOS8 UILocalNotification 和之前的变化
标签:ios8 uilocalnotification 和之前的变化
原文地址:http://4223840.blog.51cto.com/4213840/1554858