IOS8 UILocalNotification 和之前的变化
时间:2014-09-18 19:05:55
收藏:0
阅读:542
ios的本地消息需要用户允许后才可以使用
代码如下
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:settings];
原文:http://4223840.blog.51cto.com/4213840/1554858
评论(0)