如何在Swift中包含ALCameraViewController的Libraray

时间:2016-08-26 10:51:11

标签: swift

我想从

中包含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”这个词。

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

1 个答案:

答案 0 :(得分:0)

您是否尝试使用CocoaPods安装?

是 - >

import ALCameraViewController中的

UIViewController应该有效。别忘了打开.xcworkspace文件。

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

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