What i need is to wait till setImageWithURL
has finished proccesing the image, here is my code on the viewDidLoad method:
UIImageView *test = [[UIImageView alloc] init];
[test setImageWithURL:[NSURL URLWithString:object.imageUrl]];
Is there anyway to set this method to run synchronous? I have tried the completed
block, but for some strange reason it never gets called.