您好,欢迎来到二三娱乐。
搜索
您的当前位置:首页ios7和ios8设置应用程序右上角数字

ios7和ios8设置应用程序右上角数字

来源:二三娱乐

IOS7:

UIApplication *app = [UIApplication sharedApplication];
//应用程序右上角数字
app.applicationIconBadgeNumber =99;
上面的代码可以搞定

IOS8:

如果只用上边的代码会抛错:
Attempting to badge the application icon but haven't received permission from the user to badge the…
原因是因为在ios8中,设置应用的application badge value需要得到用户的许可,来提高用户体验。
使用如下方法咨询用户是否许可应用设置application badge value:

UIUserNotificationSettings *settings = [UIUserNotificationSettingssettingsForTypes:UIUserNotificationTypeBadge categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:settings];

UIApplication*app = [UIApplicationsharedApplication];
//应用程序右上角数字
app.applicationIconBadgeNumber=0;

Copyright © 2019- yule263.com 版权所有 湘ICP备2023023988号-1

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务