やっはろー。セクションごとに開閉できるテーブルビュー、いわゆるアコーディオンメニューを実装したい、という話をします。 開閉する セクションの開閉とは要するにセル数の増減のことなのでそのようにします。 override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { if openedSections.contains(section) { return items[section].members.count } else { return 0 } } override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { let view