gpt4 book ai didi

ios - 如何在点击时更改 UITableViewCell 的部分位置

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:12:31 26 4
gpt4 key购买 nike

每当点击单元格上的按钮时,我都会尝试将 UITableViewCell 添加到另一个 UITableView 部分。但是,我对如何在单元格加载到 TableView 后更改单元格的部分位置的过程感到很困惑。目前我有两个部分,并在第一部分中添加了 5 个自定义 UITableViewCells。

关于如何将单元格移动到第二部分的任何想法?

这是我的 View Controller 类中的单元格和部分方法:

var tableData = ["One","Two","Three","Four","Five"]

// Content within each cell and reusablity on scroll
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var tableCell : Task = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! Task
tableCell.selectionStyle = .None
tableView.separatorStyle = UITableViewCellSeparatorStyle.None

var titleString = "Section \(indexPath.section) Row \(indexPath.row)"
tableCell.title.text = titleString
println(indexPath.row)

return tableCell
}

// Number of sections in table
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 2
}

// Section titles
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
if section == 0 {
return "First Section"
} else {
return "Second Section"
}
}

// Number of rows in each section
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if section == 0 {
return tableData.count
} else if section == 1 {
return 0
} else {
return 0
}
}

最佳答案

第一部分和第二部分需要一个单独的数据源。点击按钮时,使用 moveRowAtIndexPath(indexPath: NSIndexPath, toIndexPath newIndexPath: NSIndexPath) UITableView 方法修改数据源并将单元格移动到新部分。

例如:

var firstDataSource = ["One","Two","Three","Four","Five"]
var secondDataSource = [ ]

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return section == 0 ? firstDataSource.count : secondDataSource.count
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! UITableViewCell
cell.textLabel?.text = indexPath.section == 0 ? firstDataSource[indexPath.row] : secondDataSource[indexPath.row]

return cell
}

// For example, changing section of cell when click on it.
// In your case, similar code should be in the button's tap event handler
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
{
if indexPath.section == 0
{
let data = firstDataSource[indexPath.row]

tableView.beginUpdates()
secondDataSource.append(data)
firstDataSource.removeAtIndex(indexPath.row)

let newIndexPath = NSIndexPath(forRow: find(secondDataSource, data)!, inSection: 1)

tableView.moveRowAtIndexPath(indexPath, toIndexPath: newIndexPath)
tableView.endUpdates()
}
}

关于ios - 如何在点击时更改 UITableViewCell 的部分位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32610802/

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