You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that if you alloc a EGOImageView (for example view controller in a pushed inside a navigation controller) and it gets deallocated (view controller popped), network operations are still running, and this make all my other network operations get slower.
I fixed that in the dealloc method in EGOImageView.m just adding: [self cancelImageLoad];
The text was updated successfully, but these errors were encountered:
Hello everybody,
I noticed that if you alloc a EGOImageView (for example view controller in a pushed inside a navigation controller) and it gets deallocated (view controller popped), network operations are still running, and this make all my other network operations get slower.
I fixed that in the dealloc method in EGOImageView.m just adding: [self cancelImageLoad];
The text was updated successfully, but these errors were encountered: