0
で任意のビデオのプレビューを取得できません私はそうのように私のAVCaptureSession
を設定はAVCaptureSession
AVCaptureVideoPreviewLayer *layer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:[recorder session]];
[layer setBounds:[recordingView bounds]];
[layer setVideoGravity:AVLayerVideoGravityResizeAspectFill];
[[recordingView layer] insertSublayer:layer above:[recordingView layer]];
しかし、私はいずれかを取得する習慣プレビュー
私はiPod touchの第四将軍とIOS 5に
おかげです。
'recordingView'は私の' MainViewController'の中の 'UIView'です。 これを変更しましたが、修正しませんでした。 – tonekk
initの後にセッションを開始する必要があります。 '[newSession startRunning];' – yinkou
さて、私はそれをコピーするのを忘れました。 私はこの問題が他のどこかにあるかもしれないと思っています... ここにプロジェクト全体があります(それが許可されていれば...):http://www21.zippyshare.com/v/26365272/file.html それほど多くはありませんが、ちょうど5つのクラスほど。 – tonekk