Closed sauchye closed 9 years ago
获取用户是否开启通知
- (BOOL)isAllowedNotification {
if (FSystemVersion >= 8.0) {
UIUserNotificationSettings *setting = [[UIApplication sharedApplication] currentUserNotificationSettings];
if (setting.types != UIUserNotificationTypeNone) {
return YES;
}
} else {
UIRemoteNotificationType type = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if(type != UIRemoteNotificationTypeNone)
return YES;
}
return NO;
}
iOS获取系统相关权限(iOS7及以上)
获取AVAudioSession录音权限