にALCameraViewControllerのLibrarayを含めるためにはどのようにトリミングVCを持っているスウィフト
https://github.com/AlexLittlejohn/ALCameraViewController
からALCameraViewControllerを含めるようにしたいと思います。
let croppingEnabled = true
let cameraViewController = CameraViewController(croppingEnabled: croppingEnabled) { [weak self] image, asset in
// Do something with your image here.
// If cropping is enabled this image will be the cropped version
self?.dismissViewControllerAnimated(true, completion: nil)
}
presentViewController(cameraViewController, animated: true, completion: nil)
- をしかし、問題は「CameraViewControllerが」が見つかりませんされていることを、次のとおりです。説明が言うように CocoaPodsでインポートした後、私は、コードを貼り付けます。
- 「ALCameraViewControllerをインポートする」必要があると思いますが、「ALCameraViewController」という単語はインポートすることができません。
私は移動する方法を知りませんか?誰でもこの質問を助けるアイデアですか? ありがとうございます!
.xcworkspaceプロジェクトを使用していますか? –