When I set the backgroundColor property of an CALayer instance, the change seems to be slightly animated. But I don\'t want that in my case. How ca
backgroundColor
CALayer
Try giving your layer a delegate and then have the delegate implement:
delegate
- (id)actionForLayer:(CALayer *)layer forKey:(NSString *)key { return [NSNull null]; }