这个问题在这里已经有了答案:
Best Answer-推荐答案 strong>
您需要做的是,首先添加一个按钮,标题为“添加照片”或自定义图像。
然后点击按钮添加以下代码:
if (([UIImagePickerController isSourceTypeAvailable:
UIImagePickerControllerSourceTypeCamera] == NO)
return NO;
UIImagePickerController *cameraUI = [[UIImagePickerController alloc] init];
cameraUI.sourceType = UIImagePickerControllerSourceTypeCamera;
[self presentViewController: cameraUI animated: YES completion:nil];
它会打开相机,然后你点击图片,然后点击“使用”,你必须实现 UIImagePickerControllerDelegate 方法 imagePickerController:didFinishPickingMediaWithInfo: 然后将 UIImage 存储到任何你想要的地方,使用任何你想要的文件名,使用 NSFileManager 方法。
关于iphone - 拍照并在iOS中设置为UIImageView,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/15609321/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) |
Powered by Discuz! X3.4 |