2010-04-13 92 views

回答

2

使用動畫塊,例如,

[UIView beginAnimations:@"slide-up" context:NULL]; 
imageView.center = CGPointMake(200, -100); // change this to somewhere else you want. 
[UIView commitAnimations]; 

查看iPhone Application Programming Guide瞭解詳情。

+0

哇,這真的很簡單,謝謝! – nosedive25 2010-04-13 20:29:36

相關問題