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
--
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