-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS 7 : crash exiting from EGOPhotoViewer (fixed) #33
Comments
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 |
zzz6519003
added a commit
to zzz6519003/PhotoViewer
that referenced
this issue
Sep 22, 2013
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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]
The text was updated successfully, but these errors were encountered: