vote up 0 vote down star

Example from Mac OS X:

[[aView animator] setFrame:NSMakeRect(100.0,100.0,300.0,300.0)];

I have tried something similar in UIKit, but it seems the animator method is not there for UIView. So there's no "implicit" animation?

flag

58% accept rate

1 Answer

vote up 4 vote down check

The iPhone supports implicit animation, though it does not use an animator object, it is built directly into UIView. Try this instead:

[UIView beginAnimations:nil context:nil];
[aView setFrame:NSMakeRect(100.0,100.0,300.0,300.0)];
[UIView commitAnimations];

The exact details are documented here.

Every view is always layer backed as well, so you don;t have to turn on layers in order to get a layer for explicit animation.

link|flag
wouldn't this one be an explicit animation? or what's the difference there? – Thanks Jul 24 at 16:31
No. Explicit animation is when you directly use CoreAnimation and attach CAAnimations to layers. Implicit animation is when you set some parameters about an animation, but otherwise just set normal properties on the view and let the system animate those changes for you. On the desktop implicit animation is done by forwarding all your NSView through a proxy, on the UIView knows how to handle it without using a proxy, you just have to tell it you want it to construct the implicit animations through a class method. – Louis Gerbarg Jul 24 at 17:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.