2

我正在尝试在 iPhone 上的照片库中创建一个类似于 YouTube 视频上传器视图的表格视图。

这是基本设置。

我创建了一个包含 UITextField 的自定义 UITableViewCell。在我的表格中显示单元格效果很好,我可以毫无问题地编辑文本。我创建了一个事件挂钩,以便我可以查看文本字段中的文本何时更改。

[textField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged]

我想做的就是这个。当用户第一次编辑文本时,我想在当前单元格下方的表格视图中插入一个新单元格(newIndexPath 在正确位置之前计算):

[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationBottom];
[self.tableView endUpdates];

问题是当我运行单元格插入代码时,单元格被创建但文本字段的文本短暂更新,但随后键盘被关闭并且文本字段被设置回空字符串。

任何帮助都是极好的!我整天都在为这个问题头疼。

- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section
{
    if (section == 0)
        return 2;
    else
        return self.tags.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    ...
    cell = (SimpleTextFieldTableCell *)[tableView dequeueReusableCellWithIdentifier:tagCellIdentifier];

    if (cell == nil)
    {
        cell = [[[NSBundle mainBundle] loadNibNamed:@"SimpleTextFieldTableCell" owner:nil options:nil] lastObject];
    }

    ((SimpleTextFieldTableCell *)cell).textField.delegate = self;
    ((SimpleTextFieldTableCell *)cell).textField.tag = indexPath.row;
    ((SimpleTextFieldTableCell *)cell).textField.text = [self.tags objectAtIndex:indexPath.row];
    [((SimpleTextFieldTableCell *)cell).textField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];

    cell.selectionStyle = UITableViewCellSelectionStyleNone;
}

- (void)textFieldDidChange:(id)sender
{
    UITextField *textField = sender;

    [self.tags replaceObjectAtIndex:textField.tag withObject:textField.text];
    if (textField.text.length == 1)
    {
        [textField setNeedsDisplay];
        [self addTagsCell];
    }
}

- (void)addTagsCell
{
    NSString *newTag = @"";
    [self.tags addObject:newTag];

    NSIndexPath *newIndexPath = [NSIndexPath indexPathForRow:self.tags.count - 1 inSection:1];
    [self.tableView beginUpdates];
    [self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationBottom];
    [self.tableView endUpdates];
}
4

2 回答 2

0

我在这里唯一能想到的是,也许当您插入一行时,整个表格视图会重新加载,如果您没有将单元格正确添加到单元格队列中,它们将不会恢复到原来的状态,因此您会看到插入导致空单元格,只是一个猜测,希望它有所帮助。

于 2009-07-28T20:16:28.817 回答
0

快速更新:

没关系,但我注意到您不需要:

[self.tableView beginUpdates]
[self.tableView endUpdates]

因为您正在执行一项操作。不确定这是否重要(不应该)。


更新:

我应该说这样的问题很常见。这是与您的问题相关的帖子

http://www.bdunagan.com/2008/12/08/uitextview-in-a-uitableview-on-the-iphone/

此外,其他人已将其抽象出来。具体来说,我已经尝试过没有这样的问题:

http://furbo.org/2009/04/30/matt-gallagher-deserves-a-medal/

您可以使用:http: //github.com/joehewitt/three20/

但它有一点学习曲线。

解决此问题的另一个 Stackoverflow 问题:

在 UITableViewCell 内编辑 UITextField 失败

对不起,我没有直接回答您的问题,但我认为解决方案可能包含在这些链接之一中。


原答案:

尝试:

[newTextField setNeedsDisplay];

有时,表格视图可能会随着更新 UITextView/UITextField 内容而“粘滞”。

如果这不起作用,请确保您的支持模型也正确更新。您没有显示任何代码表明您更新了模型(尽管我假设您这样做了,否则它可能会引发异常)。

于 2009-07-29T03:07:55.340 回答