注册

视频通话摄像头权限设置在哪啊?

APP中添加一个视频聊天功能,在真机里要求设置摄像机权限,但是根本就无法设置,大家谁遇到过这个问题帮忙解决一下。
已邀请:

月落乌啼

赞同来自: lizg fat1

解决了,谢谢,下面是调用摄像头的代码,谁用的着的话可以直接粘贴:
UIImagePickerController *imagePicker=[[UIImagePickerController alloc] init];

    imagePicker.delegate=self;
    if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]){
     imagePicker.sourceType=UIImagePickerControllerSourceTypeCamera;
  }


[self presentViewController:imagePicker animated:YES completion:^{

}];
网址:
网址:http://www.cnblogs.com/gcb999/p/3223469.html
 

要回复问题请先登录注册