我设置了这样的按钮操作:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
[tableView setContentInset:UIEdgeInsetsMake(40, 0, 0, 0)];
[UIView commitAnimations];
但是,如果contentSize.height > tableView.frame.size.height
. 解决办法是什么?
我设置了这样的按钮操作:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
[tableView setContentInset:UIEdgeInsetsMake(40, 0, 0, 0)];
[UIView commitAnimations];
但是,如果contentSize.height > tableView.frame.size.height
. 解决办法是什么?