我正在开发一个 i-phone 应用程序,当您按下按钮时,UITableView 会下拉。我想推动/动画按钮下方的对象,以便它们位于表格视图下方。
对于需要向下移动的每个标签/文本字段,我需要以下内容:
[UIView beginAnimations: @"anim" context: nil];
[UIView setAnimationBeginsFromCurrentState: YES];
[UIView setAnimationDuration:0.3f];
self.view.frame = CGRectOffset(self.view.frame, 0, 70);
任何例子都会有所帮助。