I’m trying to construct a CABasicAnimation to animate the backgroundColor property of a Core Animation CALayer, but I can’t figure out how to properly wrap a CGColorRef value to pass to the animation. For example:
CGColorSpaceRef rgbColorspace = CGColorSpaceCreateDeviceRGB(); CGFloat values[4] = {1.0, 0.0, 0.0, 1.0}; CGColorRef red = CGColorCreate(rgbColorspace, values); CGColorSpaceRelease(rgbColorspace); CABasicAnimation *selectionAnimation = [CABasicAnimation animationWithKeyPath:@'backgroundColor']; [selectionAnimation setDuration:0.5f]; [selectionAnimation setToValue:[NSValue valueWithPointer:red]]; [layer addAnimation:selectionAnimation forKey:@'selectionAnimation'];
seems to do nothing to the backgroundColor property, I assume because handing it off as a pointer wrapped in an NSValue is not the way to pass it along.
backgroundColor is an animatable property of CALayer, so my question is: how do you set the From or To values for this particular property (preferably in a Mac / iPhone platform-independent way)?
You don’t need to wrap
CGColorRefs when setting thetoValueorfromValueproperties of aCABasicAnimation. Simply use theCGColorRef. To avoid the compiler warning, you can cast theCGColorRefto anid.In my sample app, the following code animated the background to red.
However, when the animation is over, the background returns to the original color. This is because the
CABasicAnimationonly effects the presentation layer of the target layer while the animation is running. After the animation finishes, the value set in the model layer returns. So you are going to have to set the layersbackgroundColorproperty to red as well. Perhaps turn off the implicit animations using aCATransaction.You could save yourself this trouble by using an implicit animation in the first place.