我已经阅读了如何在 xcode4.2 上移动对象并且我确实成功地移动了一个按钮。但我不能移动一个表格视图。
以下是 Viewcontroller.m 上的代码:
- (IBAction) unhide {
if (flag==1) {
flag=0;
CGRect frame = testtable.frame;
frame.origin.x = frame.origin.x; // new x coordinate
frame.origin.y = 150; // new y coordinate
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration: 0.25];
testtable.frame = frame;
[UIView commitAnimations];
}
else{
flag=1;
CGRect frame = testtable.frame;
frame.origin.x = frame.origin.x; // new x coordinate
frame.origin.y = 350; // new y coordinate
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration: 0.25];
testtable.frame = frame;
[UIView commitAnimations];
}}
先感谢您。