ios8本地通知

来源:互联网 发布:大华网络摄像机协议 编辑:程序博客网 时间:2024/05/16 02:48

使用本地通知需要进行版本判断,大于8.0版本,使用本地通知时需要先注册通知,

if ([[UIDevice currentDevice].systemVersion floatValue]>8.0) {
        if ([UIApplication instancesRespondToSelector:@selector(registerUserNotificationSettings:)]) {
            [[UIApplication sharedApplication]registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSound categories:nil]];
        }
    }



基中:

// Registering UIUserNotificationSettings more than once results in previous settings being overwritten.
- (void)registerUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings NS_AVAILABLE_IOS(8_0);

0 0
原创粉丝点击