PhotoViewer
PhotoViewer copied to clipboard
iOS 7 : crash exiting from EGOPhotoViewer (fixed)
compiling with iOS7 (GM),
when I try to exit from the photo viewer, I get a crash : -[UIScrollView(UIScrollViewInternal) _notifyDidScroll] + 64
fixed using the following modification : in EGOPhotoViewController.m in dealloc () added : _scrollView.delegate = nil; before [_scrollView release]
why not give a pull request~
and i'm so curious about why does this line of code solve the problem~ You r awesome, dude
Brilliant. Thanks. I was dealing with this for quite a long time and it didn't come to my mind to make delegate null.
Awesome. Thanks for the quick fix
@Dimmy3 the delegate should nil itself automatically, i think