• iOS 第一次安装应用,拒绝相机调用,页面卡死的解决方案


    void (^allowBlock)() = ^{

            UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];

            imagePicker.delegate = self;

            imagePicker.allowsEditing = YES;

            imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;

            if (iOS8) {

                imagePicker.modalPresentationStyle = UIModalPresentationCurrentContext;

            }

            UIViewController *ctl = [[[UIApplication sharedApplication] windows]lastObject].rootViewController;

            [ctl presentViewController:imagePicker animated:YES completion:nil];

        };

        NSString *mediaType = AVMediaTypeVideo;//读取媒体类型

        AVAuthorizationStatus authStatus = [AVCaptureDevice authorizationStatusForMediaType:mediaType];//读取设备授权状态

        if (authStatus == AVAuthorizationStatusNotDetermined) {

            [AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL granted) {

                dispatch_async(dispatch_get_main_queue(), ^{

                    if (granted) {

                        //第一次用户接受

                        allowBlock();

                    }else{

                        //用户拒绝

                        showAlert(@"已拒绝授权,打开相机失败");

                    }

                });

            }];

            return;

        }

        if(authStatus == AVAuthorizationStatusRestricted || authStatus == AVAuthorizationStatusDenied){

            showAlert(@"相机权限受限,请在设置中启用");

            return;

        }

        allowBlock();


  • 相关阅读:
    C/C++产生随机数
    BNUOJ34973Liserious战队
    oracle ebs 12.20 安装成功其过程失败日记及总结(1)
    HDU 2544 最短路 SPFA 邻接表 模板
    GridView编辑删除操作
    Hibernate_10_继承的例子_单表
    String不变性
    Mac在结构quick cocos2d-x编译环境
    Hash散列算法 Time33算法
    南京地图南京全套的卫星地图下载 百度高清卫星地图包括道路、标签信息叠加
  • 原文地址:https://www.cnblogs.com/AlvinCrash/p/5379440.html
Copyright © 2020-2023  润新知