Just like the title says. Given:
[imageView setImageWithURL:[NSURL URLWithString:imageurl]];
What is the best way to perform tasks once the image is loaded (or pulled from the cache) and displayed?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The setImageWithURL API is a super convenience method but you need a little more control so I suggest loading the image yourself with (heavily inspired from https://github.com/rs/SDWebImage/blob/master/README.md):
…
good luck!