如何在swift中更改UITableViewCell的位置?

时间:2015-07-27 21:21:45

标签: swift uitableview

不通过以下操作,找出答案。

self.tableView.moveRowAtIndexPath(indexPath,toIndexPath: NSIndexPath(index:0))

由于

1 个答案:

答案 0 :(得分:1)

tableView的indexPath应该使用

NSIndexPath(forRow: 0, inSection: 0)

在这种情况下。

tableview确实需要有关您的部分的信息。