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
#!/bin/sh | |
# | |
# `7MN. `7MF' | |
# __, MMN. M | |
#`7MM M YMb M pd""b. | |
# MM M `MN. M (O) `8b | |
# MM M `MM.M ,89 | |
# MM M YMM ""Yb. | |
#.JMML..JML. YM 88 | |
# (O) .M' |
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; | |
} | |
}]; |