returning UIImage from block

You’re unable to return anything from the completion block because it’s returned void.

You’ll probably need to create a new method like setLogo:(UIImage *)image on the object that’s expecting the image to be set, and call that method from within the completion block.

Leave a Comment