使用 AVCaptureSessionPresetMedium 时
// Create the session
AVCaptureSession * newSession = [[AVCaptureSession alloc] init];
// Configure our capturesession
newSession.sessionPreset = AVCaptureSessionPresetMedium;
有没有办法动态地告诉宽度 x 高度这将解决什么问题?显然我可以等到像这样的代表
- (void)captureOutput:(AVCaptureOutput *)captureOutput
didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer
fromConnection:(AVCaptureConnection *)connection
被调用并在那里确定它,但我宁愿提前这样做,以便我可以出于性能原因预先计算一些值。