我使用下面的代码显示使表变为可编辑状态,但似乎表视图未显示左侧的删除按钮。为什么?
- (void)viewListEditale:(NSNotification *)notification{
NSString *edited = [notification.object objectForKey:@"edit"];
if ([edited isEqualToString:@"N"]) {
[_tableView setEditing:NO animated:YES];
}else{
[_tableView setEditing:YES animated:YES];
}
}
最佳答案
我也遇到了同样的问题。上次我忘记打电话给:
[super layoutSubviews]
当我打电话
-(void)layoutSubviews
在我的自定义单元格中。请检查您的代码。
关于ios - UITableView setEditing不显示删除按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35647660/