1. 程式人生 > >iphone 中彈出輸入法鍵盤的時候,讓table向上移動。

iphone 中彈出輸入法鍵盤的時候,讓table向上移動。

#pragma mark UITextFieldDelegate

- (BOOL)textFieldShouldBeginEditing: (UITextField *)textField

{

[UIViewbeginAnimations: nilcontext: nil];

self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 280, 0);

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:textField.tag - tag_index_cell_start inSection

: 0];

[self.tableViewscrollToRowAtIndexPath: indexPath 

atScrollPosition: UITableViewScrollPositionBottom

  animated: YES];

[UIViewcommitAnimations];

returnYES;

}