0

我有一种情况,单击一个按钮,我想从底部为 tableView 设置动画,我尝试使用CustomActionSheet 示例,但我觉得它非常复杂。请告诉我我们可以做到的可能方式。

4

1 回答 1

0

首先将您的表格视图的框架设置在视图之外,然后添加为子视图然后通过更改框架来提供动画......

CGFloat height = 100;
[yourTableView setFrame:CGRectMake(0, 480, 320, height)];
[self.view addSubview:yourTableView];
[UIView animateWithDuration:0.5 animations:^{
     [yourTableView setFrame:CGRectMake(0, 480 - height, 320, 100)];
}];

希望对你有帮助

于 2013-03-04T13:09:34.127 回答