rzmn / CropView

Crop rectangle view like in Notes App
MIT License
29 stars 13 forks source link

possible memory leak that can be fixed easily ! #15

Open saormart opened 4 years ago

saormart commented 4 years ago

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!