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];