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?
|
|
Example from Mac OS X:
I have tried something similar in UIKit, but it seems the animator method is not there for UIView. So there's no "implicit" animation?
|
||
|
|
|
|
The iPhone supports implicit animation, though it does not use an animator object, it is built directly into UIView. Try this instead:
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. |
||||
|