美文网首页
IOS8.0+ UILocalNotification设置

IOS8.0+ UILocalNotification设置

作者: 疯狂的向日葵 | 来源:发表于2016-03-03 17:16 被阅读63次
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
        // iOS8需要添加请求用户的授权
        if ([UIDevice currentDevice].systemVersion.floatValue >= 8.0) {
            UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge | UIUserNotificationTypeAlert | UIUserNotificationTypeSound categories:nil];
            [application registerUserNotificationSettings:settings];
        }
    return Yes;
    }
    

    相关文章

      网友评论

          本文标题:IOS8.0+ UILocalNotification设置

          本文链接:https://www.haomeiwen.com/subject/bifokttx.html