Attempting to badge the application icon but haven't received permission from the user to badge the application
好长的一串错误信息,该错误信息是在IOS8系统下,进行图标提醒数字设置时,系统给出的提醒设置
究其原因,无非就是IOS8之后,系统需要进行一些必要的设置,才能在图标上显示数字提醒
if isEightLater { let types = UIUserNotificationType.Badge | UIUserNotificationType.Alert | UIUserNotificationType.sound; let settings = UIUserNotificationSettings(forTypes: types,categories: nil); UIApplication.sharedApplication().registerUserNotificationSettings(settings); } else { let types = UIRemoteNotificationType.Badge | UIRemoteNotificationType.Alert | UIRemoteNotificationType.sound; UIApplication.sharedApplication().registerForRemoteNotificationTypes(types); }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。