3

我有一个UITableView加载自定义单元格。这些单元格有两种可能的状态:只读状态和编辑状态。我通过点击表格视图中的相应行在它们之间进行更改:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    CustomClass *aCustomClass = [self.model objectAtIndex:indexPath.row];
    [aCustomClass setEdition:YES];

    [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
}

问题是我需要UITextField在点击该行后将单元格设置为第一响应者。我所做的是添加以下代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    cell = [tableView dequeueReusableCellWithIdentifier:@"MyCell"];

    if (!cell)
        cell = ... // Create cell

    ...

    [cell.textField becomeFirstResponder];
}

一切正常,但是当UITextField成为第一响应者时,我希望表格视图将整个单元格滚动到可见。为此,我实现了一个键盘通知事件,如下所示:

- (void)keyboardWillBeShown:(NSNotification*)aNotification
{
    NSDictionary* info = [aNotification userInfo];
    CGRect kbRawRect = [[info objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
    CGRect ownFrame = [self.tableView.window convertRect:self.tableView.frame fromView:self.tableView.superview];

    // Calculate the area that is covered by the keyboard
    CGRect coveredFrame = CGRectIntersection(ownFrame, kbRawRect);

    coveredFrame = [self.tableView.window convertRect:coveredFrame toView:self.tableView.superview];

    UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, coveredFrame.size.height, 0.0);
    self.tableView.contentInset = contentInsets;
    self.tableView.scrollIndicatorInsets = contentInsets;

    [self.tableView scrollToRowAtIndexPath:self.openCellIndexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];
}

问题是,表格视图不会将单元格滚动到顶部位置,如最后一行所示。

如果我删除自动becomeFirstResponder呼叫并UITextField手动点击,一切正常。

您知道为什么会发生这种情况,我该如何解决这个问题?

谢谢,

4

1 回答 1

0
UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, coveredFrame.size.height, 0.0);

应该这样改变:

UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, -coveredFrame.size.height, 0.0);
于 2013-06-29T02:40:07.423 回答