UITableView中带有自定义单元格的部分

时间:2017-09-02 05:45:58

标签: swift uitableview sections indexpath

到目前为止,我有以下代码。

var someData = [SomeData]()

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    if indexPath.row == 0 {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell1", for: indexPath) as! Cell1

        return cell 

    } else {

        let cell = tableView.dequeueReusableCell(withIdentifier: "cell2", for: indexPath) as? Cell2
        let someData = [indexPath.row]
        //Set up labels etc.


        return cell!
    }
}

我需要Cell1,它是一个静态单元格,并且将始终保持在indexPath 0处于一个名为“Section1”的部分中,例如&所有Cell2都在一个名为“Section2”的部分

其他数据源&代表方法;

func numberOfSections(in tableView: UITableView) -> Int {
    return 2
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if section == 0 {
        return 1
    } else {
        return someData.count
    }
}

func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    if section == 0 {
        return "Section1" }
    else {
        return "Section2"
    }
}

这将返回第一部分所需的所有内容,但是,当涉及到第二部分时(因为某处的cellForRowAtIndex中的代码),第2部分包含indexPath 0处的Cell2。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

根本原因:

cellForRowAtIndexPath中检查indexPath.section而不是indexPath.row

修正:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    if indexPath.section == 0 {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell1", for: indexPath) as! Cell1

        return cell 

    } else {

        let cell = tableView.dequeueReusableCell(withIdentifier: "cell2", for: indexPath) as? Cell2
        let someData = [indexPath.row]
        //Set up labels etc.


        return cell!
    }
}