古い方法
_[[UIApplication sharedApplication] setApplicationIconBadgeNumber:count];
_
はエラー_Attempting to badge the application icon but haven't received permission from the user to badge the application
_になりました。
次に、新しいAPIを使用しようとしました(バッジの値に関連していると思います)
_CKModifyBadgeOperation * operation = [[CKModifyBadgeOperation alloc] initWithBadgeValue:50];
[operation setModifyBadgeCompletionBlock:^(NSError *error) {
NSLog(@"%@", error);
}];
[operation start];
_
しかし、エラー<CKError 0x165048a0: "Not Authenticated" (9/1002); "This request requires an authenticated account">
を受け取っています
バッジを設定する方法、または新しい許可を受け取る方法
Daij-Djanの答えに加えて、列挙型をスタックして、一度にすべてを要求することができます。次のように:
UIUserNotificationSettings* notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];
ios8でバッジを変更するには、許可を要求する必要があります
let settings = UIUserNotificationSettings(forTypes: UIUserNotificationType.Badge, categories: nil)
UIApplication.sharedApplication().registerUserNotificationSettings(settings)
またはobjC内
UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:settings];
以前の投稿の追加情報(registerUserNotificationSettings
に完全):
Appleは、通知を登録してバッジを操作するための新しいAPIを作成します。
WWDC 2014セッション ビデオ 、 テキストバージョン および ドキュメント を参照してください。
ユーザーは、[設定]でUIUserNotificationType
(UIUserNotificationTypeBadge
、UIUserNotificationTypeSound
、UIUserNotificationTypeAlert
)ごとに権限を変更できます。
バッジを変更する前に、権限を確認する必要があります。
AppDelegateのコードサンプル:
#ifdef __IPHONE_8_0
- (BOOL)checkNotificationType:(UIUserNotificationType)type
{
UIUserNotificationSettings *currentSettings = [[UIApplication sharedApplication] currentUserNotificationSettings];
return (currentSettings.types & type);
}
#endif
- (void)setApplicationBadgeNumber:(NSInteger)badgeNumber
{
UIApplication *application = [UIApplication sharedApplication];
#ifdef __IPHONE_8_0
// compile with Xcode 6 or higher (iOS SDK >= 8.0)
if(SYSTEM_VERSION_LESS_THAN(@"8.0"))
{
application.applicationIconBadgeNumber = badgeNumber;
}
else
{
if ([self checkNotificationType:UIUserNotificationTypeBadge])
{
NSLog(@"badge number changed to %d", badgeNumber);
application.applicationIconBadgeNumber = badgeNumber;
}
else
NSLog(@"access denied for UIUserNotificationTypeBadge");
}
#else
// compile with Xcode 5 (iOS SDK < 8.0)
application.applicationIconBadgeNumber = badgeNumber;
#endif
}
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
CurrentUserNotificationSettings
メソッドはUIアプリケーションインスタンスで使用でき、最新のユーザー通知設定を提供します。
バッジ番号の使用:
[self setApplicationBadgeNumber:0];
の代わりに
application.applicationIconBadgeNumber = 0;
PS:コンパイル時のチェック(#ifdef __IPHONE_8_0
)Xcode5およびXcode6でビルドする必要があるため。この必要がない場合は、コードを簡素化できます。
Swiftを使用するときにそれを処理するクラスを作成します。
class ZYUtility
{
/// Set badge
class func setApplicationBadgeNumber(badge: Int) {
if ZYUtility.SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO("8.0") {
if UIApplication.sharedApplication().currentUserNotificationSettings().types & UIUserNotificationType.Badge != nil {
UIApplication.sharedApplication().applicationIconBadgeNumber = badge
} else {
println("No permission to set badge number")
}
} else {
UIApplication.sharedApplication().applicationIconBadgeNumber = badge
}
}
/// System check
class func SYSTEM_VERSION_EQUAL_TO(version: String) -> Bool {
return UIDevice.currentDevice().systemVersion.compare(version,
options: NSStringCompareOptions.NumericSearch) == NSComparisonResult.OrderedSame
}
class func SYSTEM_VERSION_GREATER_THAN(version: String) -> Bool {
return UIDevice.currentDevice().systemVersion.compare(version,
options: NSStringCompareOptions.NumericSearch) == NSComparisonResult.OrderedDescending
}
class func SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(version: String) -> Bool {
return UIDevice.currentDevice().systemVersion.compare(version,
options: NSStringCompareOptions.NumericSearch) != NSComparisonResult.OrderedAscending
}
class func SYSTEM_VERSION_LESS_THAN(version: String) -> Bool {
return UIDevice.currentDevice().systemVersion.compare(version,
options: NSStringCompareOptions.NumericSearch) == NSComparisonResult.OrderedAscending
}
class func SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(version: String) -> Bool {
return UIDevice.currentDevice().systemVersion.compare(version,
options: NSStringCompareOptions.NumericSearch) != NSComparisonResult.OrderedDescending
}
}
8.3、ObjCへの更新:NSLog(@ "access denied for UIUserNotificationTypeBadge");を置き換えるDaij-Djanスクリプトを追加する必要があります。上記のSpidy&KepPMソリューションで。これがお役に立てば幸いです。