这是官方提供的sample code:AVCam
http://ppt.cc/cujx
我发现把相机转换成前置镜头的时候 手指点萤幕会无法对焦
看一下code发现
if ([device isFocusPointOfInterestSupported] &&
[device isFocusModeSupported:focusMode])
{
[device setFocusMode:focusMode];
[device setFocusPointOfInterest:point];
}
如果是前置镜头,就不会进这个if,所以无法对焦..
不知道有什么办法让前置镜头可以对焦呢?