次のようなボタン アクションを設定します。
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
[tableView setContentInset:UIEdgeInsetsMake(40, 0, 0, 0)];
[UIView commitAnimations];
ただし、の場合、tableViewは下に移動しませんcontentSize.height > tableView.frame.size.height
。解決策は何ですか?