我正在尝试为我的Xcode项目实现一个裁剪pod。
我收到此错误,我不确定原因。
任何人都可以提供帮助。
let imageRef = imageToCrop!.cgImage!.cropping(to: visibleRect)
let result = UIImage(CGImage: imageRef!, scale: imageToCrop!.scale,
orientation: imageToCrop!.imageOrientation)
return result
}
但是收到此错误
模糊地使用' init(CGImage:scale:orientation:)'
答案 0 :(得分:4)
init(cgImage:scale:orientation:)
而非init(CGImage:scale:orientation:)
。
let result = UIImage(cgImage: imageRef!, scale: imageToCrop!.scale, orientation: imageToCrop!.imageOrientation)