Hi there, nice framework by the way!
I was using another framework that use yours for crop, and I found a memory leak with the picture, and it was easy to fix by declare the "imageView" var as weak var in the class SECropView!
public class SECropView: UIView { ... fileprivate weak var imageView : UIImageView?
Hi there, nice framework by the way! I was using another framework that use yours for crop, and I found a memory leak with the picture, and it was easy to fix by declare the "imageView" var as weak var in the class SECropView!
public class SECropView: UIView { ... fileprivate weak var imageView : UIImageView?
hope this help!