CGImage/UIImage lazily loading on UI thread causes stutter

I’ve had the same stuttering problem, with some help I figured out the proper solution here: Non-lazy image loading in iOS Two important things to mention: Don’t use UIKit methods in a worker-thread. Use CoreGraphics instead. Even if you have a background thread for loading and decompressing images, you’ll still have a little stutter if … Read more

EXC_BAD_ACCESS when building nspredicate

The issue is the placeholder, not with NSPredicate directly, but with initWithFormat: that is innerly called. %@ shouldn’t be used with an int, use %d instead. So this line: NSPredicate *pred = [NSPredicate predicateWithFormat:@”(alter_min_monat > %@)”, months]; Should be: NSPredicate *pred = [NSPredicate predicateWithFormat:@”(alter_min_monat > %d)”, months]; Other linked information : String Programming Guide: String … Read more