如何以编程方式使用原型单元格删除表视图节标题

问题描述 投票:0回答:1

我通过使用像这样的原型单元格在界面构建器中设置我的表视图标题部分

enter image description here

这是此表视图标题部分的最终结果

enter image description here

数据实际上是动态的,如果可用的部分只有一个(假设只是财务部分),我希望表视图标题部分不存在,只显示该人的姓名。下面是我使用的简化代码。

import UIKit

class ViewController: UIViewController {

    @IBOutlet weak var tableView: UITableView!

    var sectionMember : [Department]?

    var abcd = 2


    override func viewDidLoad() {
        super.viewDidLoad()

        tableView.dataSource = self
        tableView.delegate = self

        let IT = Department(name: "IT", member: ["joko", "santi","pipin","candra"])
        let finance = Department(name: "Finance & Accounting", member: ["ririn","andri","bagus","reyhan"])
        let security = Department(name: "security", member: ["anto","budi","rudi"])
        let purchasing = Department(name: "Purchasing", member: ["lulu","rina","santi"])

        sectionMember = [IT,finance,security, purchasing]
        //sectionMember = [IT]


    }



}

extension ViewController : UITableViewDelegate {

}

extension ViewController : UITableViewDataSource {

    func numberOfSections(in tableView: UITableView) -> Int {
        return (sectionMember?.count)!
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return sectionMember![section].member.count
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell1") as! TableViewCell

        let departmentMember = sectionMember![indexPath.section].member[indexPath.row]

        cell.memberOfDepartment = departmentMember

        return cell
    }


    func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {


        if abcd == 1 {
            return nil
        } else {
            let cell = tableView.dequeueReusableCell(withIdentifier: "HeaderCell") as! HeaderCell
            cell.department = sectionMember![section].name
            return cell
        }



    }




}

简化代码我使用变量abcd,如果abcd = 1我希望该节标题被隐藏/删除/不存在,但如果abcd不是1则显示标题部分。

在方法viewForHeaderInSection,我return nil如果abcd = 1,但结果只是仍然显示标题部分,但颜色是灰色,我不知道为什么它是灰色的颜色不像故事板中的粉红色。那么如何摆脱下面的灰色部分?

enter image description here

ios swift uitableview tableview
1个回答
3
投票

如果只有一个部分,你在标题中给出了nil,但也给出了高度

 func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {

    if sectionMember?.count ?? 0 == 1 {
        return 0.0
    }
    else {
        return your height
    }
}

还有,你的功能

func numberOfSections(in tableView: UITableView) -> Int {
    return (sectionMember?.count)!
}

永远不要像这样使用bang运算符..用默认值打开它

func numberOfSections(in tableView: UITableView) -> Int {
    return self.sectionMember?.count ?? 0
}
© www.soinside.com 2019 - 2024. All rights reserved.