0

如何在 Xcode 中使对象从位置 a (x, y) 移动到位置 b (x, y),最好使用 Cocoa Touch。

问候,尼基塔。

4

1 回答 1

2

使用核心动画块:

[UIView animateWithDuration:5.0
                 animations:^{ 
                   myView.frame = newFrame; 
                 } completion:^(BOOL  completed){
                   // done!
                 }];
于 2012-11-04T04:05:01.327 回答