iOS 8显示应用角标

来源:互联网 发布:描述性数据分析 编辑:程序博客网 时间:2024/06/07 00:18

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

    // Override point for customization after application launch.

    if ([[UIDevicecurrentDevice].systemVersiondoubleValue] >= 8.0)

    {

        UIUserNotificationType types =UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert;

        UIUserNotificationSettings *notificationSettings = [UIUserNotificationSettingssettingsForTypes:types categories:nil];

        [[UIApplicationsharedApplication] registerUserNotificationSettings:notificationSettings];

    }

    else

    {

        UIRemoteNotificationType types =UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert;

        [[UIApplicationsharedApplication] registerForRemoteNotificationTypes:types];

    }


    

    returnYES;

}

0 0