Closed jmig closed 10 years ago
Hi! How to make EgoCache, EgoImageLoader and EgoImageView load images and scroll smooth in a uitableview? I already have everything set and working but the uitableview is not scrolling smoothly... How can I solve this?
There's a flickering bug in tableview.
Still trying to figure out if it's just EGOCache since I've updated several libs (JSONKit, AFNetworking) But I think it's EGOCache related
@enormego Am I the only one to have this issue?
[[anImage representations] objectAtIndex:0] returns an NSCGImageSnapshotRep which does not respond to representationUsingType:properties and leads to this error [NSCGImageSnapshotRep representationUsingType:properties:]: unrecognized selector sent to instance.
Plus, NSCGImageSnapshotRep seems to be private and isn't officially documented .
NSBitmapImageRep DOES respond to representationUsingType:properties. So I create the NSBitmapImageRep from the NSImage and then use representationUsingType:properties to return the NSData. This NSImagePNGRepresentation method could/should be in an NSImage Category.