gpt4 book ai didi

sorting - 使用点击在表格 View 中移动行 - Swift

转载 作者:搜寻专家 更新时间:2023-10-31 22:36:00 24 4
gpt4 key购买 nike

我尝试通过单击单元格来模拟单元格的拖动。

点击后,单个单元格必须是列表中的第一项。我尝试了所有方法,但我的索引路径发生了变化,但我没有在表中看到结果,即使我重新加载它也是如此。

有什么建议吗?

这是我的代码:

import UIKit

var array = ["1", "2", "3", "4", "5", "6"]

class Table: UITableViewController {


override func viewDidLoad() {
super.viewDidLoad()

tableView.setEditing(true, animated: true)
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}


override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return array.count
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
cell.textLabel.text = array[indexPath.row]
return cell

}

var indexPathForCell = NSIndexPath(forRow: 0, inSection: 0)

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPathForCell: NSIndexPath) {
tableView.reloadData()
println(indexPathForCell)

//

}

override func tableView(tableView: UITableView, moveRowAtIndexPath sourceIndexPath: NSIndexPath, toIndexPath indexPathForCell: NSIndexPath) {
println(indexPathForCell)
}

}

谢谢

最佳答案

要以动画方式交换单元格的位置,您需要同时更新数据源和 tableView 的表示。你可以这样做:

table.beginUpdates()

table.moveRowAtIndexPath(indexPath, toIndexPath: NSIndexPath(forRow: 0, inSection: 0))
array.insert(array.removeAtIndex(indexPath.row), atIndex: 0)

table.endUpdates()

关于sorting - 使用点击在表格 View 中移动行 - Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26855705/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com