如何更改UITableViewCell的节位置

时间:2015-09-16 14:01:24

标签: ios iphone swift uitableview cocoa-touch

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

有关如何将细胞移动到第二部分的任何想法?

以下是我的视图控制器类中的单元格和剖面方法:

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
    }
}

1 个答案:

答案 0 :(得分:1)

您需要为第一和第二部分提供单独的数据源。点击按钮时,修改数据源并使用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()
    }
}