I have a TTImageview in my app. I assign it with proper url:
myImage.urlPath = @"http://shoppa.itiul.co.il/Media/StoreImages/40/40_276x186.jpg";
But the image is not shown (requestDidFinishLoad is not called) until I swipe the screen.
What could be the problem?
Thanks in advance,
Luda
Found the problem: I have overridden the viewWillAppear method in the controller that uses the TTImageview but forgot to call the super method.