我正在使用CropImg这个链接来快速裁剪图像。所有的事情都很好。但我有一个愚蠢的问题。在此 CropppableImageView 类中有一个名为CropDelegate的委托。我在viewController中选择了一个视图,然后使用“Idenity Inspector”将类型更改为CroppableImageView。但我无法将CropDelegate与我的viewController连接。
任何人都可以指导我这样做吗?我知道这是一个非常愚蠢的问题,但我无法做到这一点。
感谢。
答案 0 :(得分:1)
像这样添加
class ViewController: UIViewController, CropDelegate
然后通过
设置委托imageView.cropDelegate = self