美文网首页
iOS权限设置

iOS权限设置

作者: 楼船夜雪_WL | 来源:发表于2019-04-16 23:31 被阅读0次

//如果没有权限,iOS10以下用弹窗提醒;iOS10直接跳到“设置”中去

- (void)cameraAuthorizationAlert {

    NSString *versionNum = [[UIDevice currentDevice] systemVersion];

    NSLog(@"版本号:%@",versionNum);

    if([versionNumfloatValue] >=10.0) {

        // 无权限 引导去开启

        NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];

        if ([[UIApplication sharedApplication]canOpenURL:url]) {

            [[UIApplication sharedApplication]openURL:url];

        }

    }

    else{

        UIAlertView*alert = [[UIAlertViewalloc]initWithTitle:@"提示"  message:@"’微模识’需要访问您的相机,是否去设置?"  delegate:selfcancelButtonTitle:@"取消"otherButtonTitles:@"确定",nil];

        [alertshow];

    }

}

相关文章

网友评论

      本文标题:iOS权限设置

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