0

我是 iOS 新手。我想知道是否可以访问 的重拍图像按钮 UIImagePickerController。如果是这样,您如何调用该按钮上的函数?

我的问题是我正在使用UIImagePickerController从相机拍摄图像并将图像保存在文档目录中。我已经使用 aUIImageViewUIAlertView在另一个视图上完成了我的任务,但问题是我想在按下相机中的重新拍摄图像按钮之前保存图像。我必须做些什么来实现这一目标?

4

1 回答 1

0

You can't do what you want using UIImagePickerController. Instead, use AVFoundation framework for capturing still images in the way you want. Please, check this Apple's sample project http://developer.apple.com/library/ios/#samplecode/AVCam/Introduction/Intro.html.

于 2012-11-20T13:18:49.373 回答