我必须打开相机(通过avfoundation.framework)
mac支持AvCaptureSessionPreset640x480(FaceTime HD)
我尝试这样做,但相机图像分辨率为1280x720。
(无效)开 { captureSession = [[AVCaptureSession alloc] init];
[captureSession beginConfiguration];
...
[captureSession setSessionPreset:AVCaptureSessionPreset640x480];
[captureSession commitConfiguration]; }
为什么不能运行avcapturesessionPreeset640x480?
基础SDK:OS X 10.9,OS X部署目标OS X 10.7