Re: Can't get CABasicAnimation to explicitly animate frame property of CALayer

2008-11-10 Thread David Duncan
On Nov 9, 2008, at 4:04 AM, Oleg Krupnov wrote: Using Core Animation, I want to make a layer change its position and size with animation. So I need to use the frame property of CALayer, which is animatable, according to the documentation. http://developer.apple.com/qa/qa2008/qa1620.html --

Can't get CABasicAnimation to explicitly animate frame property of CALayer

2008-11-09 Thread Oleg Krupnov
Using Core Animation, I want to make a layer change its position and size with animation. So I need to use the frame property of CALayer, which is animatable, according to the documentation. The implicit animation like this: [theLayer setFrame:NSRectToCGRect(targetFrame)]; works perfectly, but