问题描述
APP中添加一个视频聊天功能,在真机里要求设置摄像机权限,但是根本就无法设置,大家谁遇到过这个问题帮忙解决一下。
解决方案
解决了,谢谢,下面是调用摄像头的代码,谁用的着的话可以直接粘贴: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
时间: 2024-10-05 03:57:22