插入和删除行以实现Tableview的展开和折叠效果

时间:2019-02-06 15:20:27

标签: swift uitableview

我对数据源有疑问。 原因:“试图将第0行插入第0节,但更新后第0节只有0行”。

我一直在尝试扩展和折叠表格视图的第1部分。当我第一次展示视图控制器时,我可以先扩展然后折叠,但是当我第二次尝试扩展它时,它崩溃了。当它在numberOfRows中扩展时,我尝试为其添加+1,但这也会崩溃。 idk我在做什么错了,我需要添加什么才能完成这项工作。

编辑*当我最初单击以展开部分时,在numberofRowsInSection内运行了if isExpanded == false语句,为我提供了一个section.count-1。但是为什么要运行该行并给我返回一行?看来我的问题与该问题有关,但IDK已解决。

var sectionArray = [ ExpandableCell(isExpanded: false, section: [""])
]


@objc func handleExpandClose(button: UIButton) {
    let indexPath = IndexPath(row: 0, section: 0)

    let isExpanded = sectionArray[0].isExpanded
    if isExpanded {
        sectionArray[0].section.removeAll()
        tableView.beginUpdates()
        tableView.deleteRows(at: [indexPath], with: .fade)
        tableView.endUpdates()
    } else {
        sectionArray[0].section.append("")
        tableView.beginUpdates()
        tableView.insertRows(at: [indexPath], with: .fade)
        tableView.endUpdates()

    }
    sectionArray[0].isExpanded.toggle()
}

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

    if section == 0 && sectionArray[0].isExpanded {
        return sectionArray[0].section.count
    } else if section == 0 && sectionArray[0].isExpanded == false {
        return sectionArray[0].section.count - 1
    }

    else if section == 1 {
        return 1
    }
    return 0
}

1 个答案:

答案 0 :(得分:1)

应用运行时

if section == 0 && sectionArray[0].isExpanded == false

运行,根据ectionArray[0].section.count - 1行数为0,然后单击操作handleExpandClose,否则运行

} else {
sectionArray[0].section.append("")
tableView.beginUpdates()
tableView.insertRows(at: [indexPath], with: .fade)

在其中将数据附加到唯一对象内部的内部数组中,因此在插入时,dataSource主数组sectionArray不会更改,因此会崩溃


class TableViewController: UITableViewController {

    var sectionArray = [ExpandableCell(),ExpandableCell(),ExpandableCell()]


    override func viewDidLoad() {
        super.viewDidLoad()

        // Uncomment the following line to preserve selection between presentations
        // self.clearsSelectionOnViewWillAppear = false

        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem

        self.tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
        // simulate collapse action
        DispatchQueue.main.asyncAfter(deadline: .now() + 4) {

            self.sectionArray[0].isExpanded = false

            self.tableView.reloadData()
        }
    }

    // MARK: - Table view data source

    override func numberOfSections(in tableView: UITableView) -> Int {
        // #warning Incomplete implementation, return the number of sections
        return sectionArray.count
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        // #warning Incomplete implementation, return the number of rows
        return sectionArray[section].isExpanded ? sectionArray[section].content.count : 0
    }


    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)

        // Configure the cell...

        cell.textLabel?.text = sectionArray[indexPath.section].content[indexPath.row]

        return cell
    }


}



struct ExpandableCell {

    var isExpanded = true

    var content = ["1","2","3"]
}