关闭表格编辑模式后,我有一个奇怪的问题editingAccessoryView
。UITableViewCell
目前,我正在使用 aUISwitch
作为编辑附件视图,并在按下导航栏的编辑按钮时让表格视图处理在屏幕上移动编辑视图的动画。
几乎所有的编辑附件视图都在屏幕外正确设置动画,但总有两个不能完全离开屏幕,然后当单元格出列并重用时它们会被重用,因此它们会在滚动过程中显示出来。
有没有其他人看到这个或者我在这里错过了什么?
我正在像这样设置单元格:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
AllStatCell *cell = [tableView dequeueReusableCellWithIdentifier:@"AllStatCell"];
if (cell.editingAccessoryView == nil) {
UISwitch *statSwitch = [[UISwitch alloc] initWithFrame:CGRectZero];
[statSwitch addTarget:self action:@selector(saveSwitchState:) forControlEvents:UIControlEventValueChanged];
cell.editingAccessoryView = statSwitch;
}
NSString *statName = [self statNameForIndexPath:indexPath];
cell.statName.text = statName;
[(UISwitch *)cell.editingAccessoryView setOn:[self switchValueForIndexPath:indexPath withStatNamed:statName]];
if (tableView.editing) cell.statValue.hidden = YES;
return cell;
}
我已经尝试覆盖setEditing
延迟后重新加载表数据的方法以允许动画完成,但它有时只有效
- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
[super setEditing:editing animated:animated];
// Insert/delete the stat rows depending on editing mode
[self rebuildTableDataAnimated:YES];
double delayInSeconds = 0.5;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
// Trying to fix bug that shows part of a UISwitch on screen still even though editing mode is completed
[self.tableView reloadData];
});
}
这是一个屏幕截图: