我有一部这样的法典:
[tableView beginUpdates];
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:[array indexOfObject:[array objectAtIndex:indexPath.row]]] withRowAnimation:UITableViewRowAnimationLeft];
[tableView endUpdates];
[tableView reloadData];
当用户点上一个通道时,该卫星便被引爆。 第一部分仅能提供平稳的算术,而实际上无关紧要,因为表态后来重载了微秒,但正如我说过的那样,它会给它带来启发。
它应当将一个选定的物体从目前的指数Path移至同一指数Path阵列的数值。
显然,这部法律并不奏效,因此,我只想知道可以做些什么来解决这个问题?
PS:我也在汇编时得到警告。 通常的“绕过阵列第1条:在无放电的情况下从愤怒中找到点”。
最终采用这一方法:
[tableView beginUpdates];
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:[array indexOfObject:[arraySubFarts objectAtIndex:indexPath.row]] inSection:0]] withRowAnimation:UITableViewRowAnimationFade];
[tableView endUpdates];
[tableView reloadData];