1
2
3
4
5
|
[[TMCache sharedCache] objectForKey:@
"image"
block:^(TMCache *cache, NSString *key, id object) {
UIImage *image = (UIImage *)object;
NSLog(@
"image scale: %f"
, image.scale);
}];
|