场景是:具有多个部分的uitableview。部分中包含多个文本字段。现在我想在UITextfield上正确滚动tableview活动。即每当键盘出现在视图上时。 有许多可用的解决方案......如。
[ tableView scrollToRowAtIndexPath:"name of current cell" atScrollPosition:"position to scroll" animated:YES];
这里让"位置滚动" = UITableViewScrollPositionMiddle。 ... 这不是100%正确的方式,因为设计不是必需的。
另一种解决方案:
- (void)keyboardDidShow:(NSNotification*)aNotification
{
// Managing contentInset and scrollIndicatorInsets of UITableView here.
}..
这也不正确。有什么建议吗?