我想从
中包含ALCameraViewControllerhttps://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)
我不知道如何继续前进?有人想帮助解决这个问题吗? 非常感谢你!
答案 0 :(得分:0)
您是否尝试使用CocoaPods安装?
是 - >
import ALCameraViewController
中的 UIViewController
应该有效。别忘了打开.xcworkspace
文件。
否 - GT; (从gitHub
下载并手动添加文件)
您不需要导入。只需使用项目提供的示例。