web-dev-qa-db-ja.com

iOS 8でアプリケーションバッジの値を正しく設定する方法は?

古い方法

_[[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">を受け取っています

バッジを設定する方法、または新しい許可を受け取る方法

36
Roman Truba

Daij-Djanの答えに加えて、列挙型をスタックして、一度にすべてを要求することができます。次のように:

UIUserNotificationSettings* notificationSettings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound categories:nil];
[[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];

デバッグ出力には、アプリケーションバッジの許可を求める必要があると記載されています

39
Departamento B

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];
36
Daij-Djan

以前の投稿の追加情報(registerUserNotificationSettingsに完全):

Appleは、通知を登録してバッジを操作するための新しいAPIを作成します。

WWDC 2014セッション ビデオテキストバージョン および ドキュメント を参照してください。

ユーザーは、[設定]でUIUserNotificationTypeUIUserNotificationTypeBadgeUIUserNotificationTypeSoundUIUserNotificationTypeAlert)ごとに権限を変更できます。

バッジを変更する前に、権限を確認する必要があります。

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でビルドする必要があるため。この必要がない場合は、コードを簡素化できます。

22
KepPM

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
    }
}
1
ZYiOS

8.3、ObjCへの更新:NSLog(@ "access denied for UIUserNotificationTypeBadge");を置き換えるDaij-Djanスクリプトを追加する必要があります。上記のSpidy&KepPMソリューションで。これがお役に立てば幸いです。

0
Nik