ALCameraViewController

ALCameraViewController

我想包括来自的ALCameraViewController

https://github.com/AlexLittlejohn/ALCameraViewController

有一个裁剪的VC。
使用CocoaPods导入后,我将代码粘贴为如下描述:

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”。
我想我需要“导入ALCameraViewController”,但不接受“ ALCameraViewController”一词的导入。


我不知道如何继续前进?任何人都可以帮助解决这个问题吗?
非常感谢你!

最佳答案

您是否尝试使用CocoaPods安装?

是的->

import ALCameraViewController中的UIViewController应该可以工作。不要忘记打开.xcworkspace文件。

否->(从gitHub下载并手动添加文件)

您不需要导入。只需使用项目提供的示例。

关于swift - 如何在Swift中包含ALCameraViewController库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39164537/

10-12 03:33