插入 UITableViewCell 不起作用

Posted

技术标签:

【中文标题】插入 UITableViewCell 不起作用【英文标题】:inserting UITableViewCell not working 【发布时间】:2012-06-21 00:22:11 【问题描述】:

有人能解释一下我在尝试插入新的 UITableViewCell 时做错了什么吗?我正在尝试插入自定义 UITableViewCell,但它会引发以下错误:'无效更新:第 0 节中的行数无效。更新 (1) 后现有节中包含的行数必须等于数字更新前该节中包含的行数 (1),加上或减去从该节插入或删除的行数(1 插入,0 删除),加上或减去移入或移出该节的行数(0迁入,0迁出)。'

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

// Return the number of rows in the section.
if (section == 0)
    return 1;
else if (section == 1)
    return numberOfRows;
return 1;



- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

static NSString *CellIdentifier = @"EditableCell";

EditableCell *editableCell = (EditableCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (editableCell == nil) 

    editableCell = [[EditableCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];


_myTextField = [editableCell textFieldCell];

if (indexPath.section == 0)
    [_myTextField setPlaceholder:@"Menu Name"];
    [_myTextField setReturnKeyType:UIReturnKeyNext];

else if (indexPath.section == 1)
    [_myTextField setPlaceholder:@"Category"];
    [_myTextField setReturnKeyType:UIReturnKeyNext];

else 
    [_myTextField setPlaceholder:@"Category"];
    [_myTextField setReturnKeyType:UIReturnKeyDone];


_myTextField.keyboardType = UIKeyboardTypeDefault;
_myTextField.delegate = self;

return editableCell;


-(BOOL)textFieldShouldReturn:(UITextField *)textField

if (textField.returnKeyType == UIReturnKeyNext) 

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:1];
    NSArray *array = [[NSArray alloc] initWithObjects:indexPath, nil];

    [self.tableView insertRowsAtIndexPaths:array withRowAnimation:UITableViewRowAnimationTop];

    numberOfRows = numberOfRows + 1;

    [self.tableView reloadData];
         

【问题讨论】:

【参考方案1】:

您需要确保下面方法中返回的行数现在返回正确的行数。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

我确定发生的情况是您在插入后返回相同的值,而运行时期望它比您调用插入行之前的值多一个。

更详细地说,在 MVC 术语(模型/视图/控制器)中发生的事情是这样的:

    您对insertRowsAtIndexPaths 的调用请求控制器用额外的行更新视图。

    然后,控制器会进行健全性检查以查看您的总和是否正确,因此它会调用: tableView:numberOfRowsInSection

    现在控制器知道该方法上次返回的值(在您的情况下为 1),并且它还知道您已请求插入一行。没有删除调用,所以它预计下次调用此方法时,值应该是(上次的值 + 插入的行 - 删除的行)= 2

    如果控制器认为你的事情已经安排好了,它会调用cellForRowAtIndexPath(以及其他方法)来获取每个部分中每一行的实际单元格。

    李>

因此,对于您的问题,您需要跟踪模型中的行 - 可能在数组或具有可用行数的 ivar 中。在调用insertRowsAtIndexPath 之前在添加/删除行时更新此值来更新模型,然后在调用tableView:numberOfRowsInSection 时返回此值。

附加提示:

如果您希望您的单元格插入/删除具有动画效果,请将您的代码更改为以下内容。请注意,不再调用reloadData,而是将插入/重新加载包含在开始/结束更新调用中 - 由于reloadSections 调用,动画更新将在endUpdates 之后发生。

NSMutableIndexSet *sectionsToReload = [[NSMutableIndexSet alloc] init];
[sectionsToReload addIndex:1]; // Add sections as necessary

[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:array withRowAnimation:UITableViewRowAnimationTop];
[self.tableView reloadSections:sectionsToReload withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];

查看WWDC 2010 video from Apple,“Mastering Table Views” - 很好地解释了关于使用insertRowsAtIndexPaths 和相关方法的所有内容。

HTH, 拉伸

【讨论】:

我尝试了使用 int 变量的建议,但无济于事。我更新了上面的代码,你介意再看一下吗?非常感谢 ok 看看。在我开始之前,您是否收到完全相同的错误消息? 好的 - 在拨打 insertRowsAtIndexPaths 之前尝试更新您的 numberOfRows。您需要在此调用之前更新您的模型,而不是在reloadData 调用之前。 啊太棒了 - 很高兴它解决了您的问题!当您进行插入/删除/重新加载调用时,控制器会执行这些检查,所以是的,您需要在进行这些调用之前更新您的模型。 嘿,Derek,我更新了我的答案,使其更加清晰,并添加了一个额外的提示,您可能会觉得它有用,而不是使用 reloadData【参考方案2】:

在您尝试插入新单元格后,您的数据源必须包含原始单元格的数量 (1) 加上您要插入的“额外”单元格 (1),总共 2 个。所以您的 tableView:numberOfRowsInSection: 必须返回 2 .

错误信息表明tableView:numberOfRowsInSection:返回1。

更新您的数据源,使其返回此“额外”单元格。

【讨论】:

我该怎么做?我已经在调用 [self.tableview reloadata];不这样做吗?谢谢 我刚刚更新了我的答案 - 看看,希望它能解释调用了哪些方法,以及你需要做什么。

以上是关于插入 UITableViewCell 不起作用的主要内容,如果未能解决你的问题,请参考以下文章

UISlider 在 UITableViewCell 中不起作用

使用 UIAppearence 设置 UITableViewCell 选择的背景颜色不起作用

UITableViewCell 事件中的 UIButton 不起作用

UItableviewCell 的背景颜色不起作用

动态 UITableViewCell 高度不起作用

UITableViewCell 样式字幕多行不起作用