裁剪图像swift ios

时间:2016-03-03 10:54:07

标签: ios swift delegates crop

我正在使用CropImg这个链接来快速裁剪图​​像。所有的事情都很好。但我有一个愚蠢的问题。在此 CropppableImageView 类中有一个名为CropDelegate的委托。我在viewController中选择了一个视图,然后使用“Idenity Inspector”将类型更改为CroppableImageView。但我无法将CropDelegate与我的viewController连接。

任何人都可以指导我这样做吗?我知道这是一个非常愚蠢的问题,但我无法做到这一点。

感谢。

1 个答案:

答案 0 :(得分:1)

像这样添加

class ViewController: UIViewController, CropDelegate

然后通过

设置委托
imageView.cropDelegate = self