有时,当UITableView处于编辑样式时,当您触发删除按钮时,此按钮可能不会显示。它很少发生,但是有人也得到同样的问题吗?
发布一些代码:
在viewDidLoad中,
[[self tableView] setEditing:YES animated:YES];
表格视图委托:
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
//do sth.
}
}