默认情况下应该发生,但在UITableViewDelegate重写中
- (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath{
return YES;
}
- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
你正在设置手机的
editingAccessoryType
到
UITableViewCellEditingStyleDelete
或
UITableViewCellEditingStyleInsert
你不会回来了
No
发件人:
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath