Reputation: 741
I would rather not change my entire project to cocos2d from UIKit, because all I need from cocos is the moveTo thing, so how can I do this method in UIKit anyone have any ideas?
Upvotes: 0
Views: 54
Reputation: 11855
Take a look at http://www.raywenderlich.com/5478/uiview-animation-tutorial-practical-recipes I found this with a simple google search.
Specifically you will want
[UIView animateWithDuration: animations:^{}];
Upvotes: 1
Reputation: 1977
There is an entire animation set for UIKit. Here's a link to Apple's Animation docs:
Upvotes: 1