ios – 表格视图重新加载部分崩溃

前端之家收集整理的这篇文章主要介绍了ios – 表格视图重新加载部分崩溃前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个包含4个部分的表视图,每个部分有1-2个表视图单元格.第一个单元格具有uiswitch作为附件视图,并控制应用程序的颜色主题,在白天模式和夜晚模式之间切换.一旦按下开关,就会调用一个函数,更改导航栏的颜色和背景颜色.在那个功能中我也放了这条线
[self.tableview reloadData];

使用新颜色更新表本身.它工作正常,但没有动画,所以我用它来代替

[self.tableView reloadSections:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0,3)] withRowAnimation:UITableViewRowAnimationFade];

当使用该行时,开关卡住并且应用程序冻结.它没有崩溃,即没有崩溃日志,它只是冻结,uiswitch停止动画中期.

我注意到我可以重新加载没有包含附件视图的单元格的部分,并且它与淡入淡出动画完美配合.即这很有效

[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:2] withRowAnimation:UITableViewRowAnimationFade];

因为第三部分没有任何带附件视图的单元格.但任何包含附件视图的单元格(即第0和第2部分)的部分,如果我尝试重新加载应用程序冻结.

任何想法为什么会这样?下面是我的cellForRowAtIndexPath

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

static NSString *cellIdentifier;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellIdentifier];

if (indexPath.section == 0) {

    cell.textLabel.text = [section0 objectAtIndex:indexPath.row];
    cell.accessoryType = UITableViewCellAccessoryNone;
    cell.selectionStyle = UITableViewCellSelectionStyleNone;

    if (indexPath.row == 0) {

        cell.accessoryView = colorSchemeSwitch;
    }

    else if (indexPath.row == 1) {

        cell.accessoryView = autoLockSwitch;
    }
}

else if (indexPath.section == 1) {

    cell.textLabel.text = [section1 objectAtIndex:indexPath.row];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}

else if (indexPath.section == 2) {

    cell.textLabel.text = [section2 objectAtIndex:indexPath.row];
    cell.accessoryType = UITableViewCellAccessoryNone;
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    cell.detailTextLabel.text = [NSString stringWithFormat:@"%i \t",(int)app.fontSize];
    fontSizeSlider.value = app.fontSize;
    cell.accessoryView = fontSizeSlider;
}

else if (indexPath.section == 3) {

    cell.textLabel.text = [section3 objectAtIndex:indexPath.row];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    cell.detailTextLabel.text = app.color;
}

cell.backgroundColor = app.cellBackgroundColor;
cell.textLabel.textColor = app.textColor;
UIView *backgroundColorView = [[UIView alloc] init];
backgroundColorView.backgroundColor = app.cellSelectedColor;
[cell setSelectedBackgroundView:backgroundColorView];

return cell;
}

解决方法

我在包含UISwitch的UITableViewCell中遇到了同样的问题.我在重新加载部分之前调用[self.tableview reloadData]解决了这个问题:
NSIndexSet *sections = [[NSIndexSet alloc] initWithIndex:2];
[self.tableView reloadData];
[self.tableView reloadSections:sections withRowAnimation:UITableViewRowAnimationFade];

如果您致电同样的问题:

[self.tableView reloadRowsAtIndexPaths:[self.tableView indexPathsForVisibleRows] withRowAnimation:UITableViewRowAnimationFade]

无需先重新加载数据.

原文链接:https://www.f2er.com/iOS/334788.html

猜你在找的iOS相关文章