点击其他部分时如何折叠打开的TableView部分

时间:2019-03-28 07:12:15

标签: ios swift

我正在使用CollapsibleTableView部分,一切正常。但是当其他未打开的部分被点击时,我需要折叠已经打开的部分。

  struct CustomCell {
     var opened = Bool()
     var title = String()
     var sectionData = [String]()
  }

 // I'm using this part inside TableView didSelectForRowAt
 if tableViewData[indexPath.section].opened {
            tableViewData[indexPath.section].opened = false
            let section = IndexSet.init(integer: indexPath.section)
            tableView.reloadSections(section, with: .none)
        } else {
            tableViewData[indexPath.section].opened = true
            let section = IndexSet.init(integer: indexPath.section)
            tableView.reloadSections(section, with: .none)
        }

1 个答案:

答案 0 :(得分:0)

这是我的项目的代码

 @objc private func sectionTapped(recognizer:UITapGestureRecognizer) {
        print("Tapped",recognizer.view?.tag)

        guard let tag = recognizer.view?.tag else {
            return
        }

        // We have already open section 
        if let currentExpandedTag = self.sectionExpanded {

            //collapse 
            if tag == currentExpandedTag {
                self.tableView.beginUpdates()
                self.sectionExpanded = nil

                self.tableView.reloadSections(IndexSet(integer: tag), with: .fade)
                self.tableView.endUpdates()
            } else {
                // Collapse current and expand other
                self.tableView.beginUpdates()
                self.tableView.reloadSections(IndexSet(integer: currentExpandedTag), with: .fade)

                self.sectionExpanded = tag
                self.tableView.reloadSections(IndexSet(integer: tag), with: .fade)

                self.tableView.endUpdates()
                self.tableView.scrollToRow(at: IndexPath(row: 0, section: tag), at: .top, animated: true)

            }
        } else {
            // Nothing expanded
            self.tableView.beginUpdates()
            self.sectionExpanded = tag

            self.tableView.reloadSections(IndexSet(integer: tag), with: .fade)


            self.tableView.endUpdates()
        }

    }

说明:

1)在func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?方法中,我已将标签设置为内容标题视图,并添加了点击手势

2)我在视图控制器var sectionExpanded:Int?中拥有属性,该属性可跟踪哪个部分展开了

3)其他代码不言自明

4)在func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int方法中,我检查了以下内容

   if let sectionExpanded = self.sectionExpanded, section == sectionExpanded {
        return subItemCount // From your array 
    }
    return 0