1
滑動刪除細胞刪除動畫錯誤
細胞中的向上刪除動畫,移動到右側。
代碼:
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
RSRecord *ar = [self.audios objectAtIndex:indexPath.row];
[self.audios removeObject:ar];
[tableView deleteRowsAtIndexPaths:[NSMutableArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
}
我想打一個短信刪除動畫,謝謝。
所有的動畫都是錯的。刪除按鈕移動到刪除的動畫中的右側。 – xx11dragon