我有一个显示单元格的表格视图。必须使用切换按钮删除其中一些单元格,然后添加一些单元格。
所以我的第三部分有 4 个单元格。它们的标题按升序排列如下:相同?、开始、结束、持续时间。我列表中的第二个和第三个单元格有文本字段,accesoryViews
当切换按钮(在顶部单元格中)关闭时,这些字段都会被删除。所以这给我留下了2个细胞:一样吗?和我第三部分的持续时间。
如果我按下一个按钮,它会将 2 个单元格添加到同一部分(第 3 节),但由于某种原因,它们具有已删除的 2 个单元格中的文本字段作为其附件视图。
我的代码如下:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"creatures"];
if (nil == cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:@"creatures"];
}
switch (indexPath.section)
{
case 0:
break;
case 1:
break;
case 2:
cell.textLabel.text = [timesTitles objectAtIndex:indexPath.row];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
if (indexPath.row == 0) {
sameTimeEverydaySwitch = [[UISwitch alloc]initWithFrame:CGRectZero];
[sameTimeEverydaySwitch setOn:YES];
[sameTimeEverydaySwitch addTarget:self action:@selector(sameEverydaySwitchChanged) forControlEvents:UIControlEventValueChanged];
cell.accessoryView = sameTimeEverydaySwitch;
}
if ([[timesTitles objectAtIndex:indexPath.row] isEqualToString:@"Start time:"]) {
cell.accessoryView = startTimeTextfield;
NSLog(@"log");
}
if ([[timesTitles objectAtIndex:indexPath.row] isEqualToString:@"End time:"]) {
cell.accessoryView = endTimeTextfield;
NSLog(@"log2");
}
if ([[timesTitles objectAtIndex:indexPath.row] isEqualToString:@"Meeting duration"]) {
cell.accessoryView = meetingDurationTextfield;
}
break;
default:
cell.textLabel.text = @"Not Found";
}
return cell;
}
当按钮被切换时,我调用:
if (![sameTimeEverydaySwitch isOn]) {
for (int j = 0; j < timesTitles.count; j++) {
if ([[timesTitles objectAtIndex:j] isEqualToString:@"Start time:"]) {
[timesTitles removeObjectAtIndex:j];
}
if ([[timesTitles objectAtIndex:j] isEqualToString:@"End time:"]) {
[timesTitles removeObjectAtIndex:j];
}
}
[timesTitles addObjectsFromArray:daysToAddToTitlesArray];
NSArray *deleteIndexPaths = [NSArray arrayWithObjects:
[NSIndexPath indexPathForRow:2 inSection:2],
[NSIndexPath indexPathForRow:1 inSection:2],
nil];
NSMutableArray *insertIndexPaths = [[NSMutableArray alloc] init];
for (int i = 2; i < [timesTitles count]; i++) {
NSIndexPath *path = [NSIndexPath indexPathForRow:i inSection:2];
[insertIndexPaths addObject:path];
}
UITableView *tv = (UITableView *)self.view;
[tv beginUpdates];
[tv insertRowsAtIndexPaths:insertIndexPaths withRowAnimation:UITableViewRowAnimationRight];
[tv deleteRowsAtIndexPaths:deleteIndexPaths withRowAnimation:UITableViewRowAnimationFade];
[tv endUpdates];
}
此代码成功删除了 2 个中间单元格。
当我使用以下方法在剩余 2 个下方添加 2 个新单元格时:
for (int i = 0; i < daysToAddToTitlesArray.count; i++) {
if (![timesTitles containsObject:[daysToAddToTitlesArray objectAtIndex:i]]) {
NSIndexPath *path = [NSIndexPath indexPathForRow:[timesTitles count] inSection:2];
[timesTitles insertObject:[daysToAddToTitlesArray objectAtIndex:i] atIndex:[timesTitles count]];
[insertIndexPaths addObject:path];
}
}
UITableView *tv = (UITableView *)self.view;
[tv beginUpdates];
[tv insertRowsAtIndexPaths:insertIndexPaths withRowAnimation:UITableViewRowAnimationRight];
[tv endUpdates];
它成功地添加了下面的 2 个新单元格,但它们的机器人中有文本字段。
我运行应用程序时的唯一输出是:log 和 log2。
我很混乱。