Created
January 8, 2012 00:11
-
-
Save MKSG-MugunthKumar/1576556 to your computer and use it in GitHub Desktop.
MKNetworkEngine and UIImageView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[AppDelegate.imageFetcher imageAtURL:self.profile.avatarURL | |
onCompletion:^(UIImage *image, NSURL *url, BOOL isInCache) | |
{ | |
// this "if" is to prevent images flashing repeatedly when cells are reused. | |
if ([[self.profile.avatarURL absoluteString] isEqualToString:[url absoluteString]]) { | |
self.avatarImageView.image = resizedImage; | |
} | |
}]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks Mugunth, I intend to. I saw on twitter you had written this. much appreciated.
Regards
Nik