UITableViewControllerに折りたたみ可能なセクションヘッダーを実装しています。
セクションごとに表示する行数を決定する方法は次のとおりです。
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return self.sections[section].isCollapsed ? 0 : self.sections[section].items.count
}
「isCollapsed」のブール値を使用してセクション情報を保持する構造体があります。
ここに私が彼らの状態を切り替える方法があります:
private func getSectionsNeedReload(_ section: Int) -> [Int]
{
var sectionsToReload: [Int] = [section]
let toggleSelectedSection = !sections[section].isCollapsed
// Toggle collapse
self.sections[section].isCollapsed = toggleSelectedSection
if self.previouslyOpenSection != -1 && section != self.previouslyOpenSection
{
self.sections[self.previouslyOpenSection].isCollapsed = !self.sections[self.previouslyOpenSection].isCollapsed
sectionsToReload.append(self.previouslyOpenSection)
self.previouslyOpenSection = section
}
else if section == self.previouslyOpenSection
{
self.previouslyOpenSection = -1
}
else
{
self.previouslyOpenSection = section
}
return sectionsToReload
}
internal func toggleSection(_ header: CollapsibleTableViewHeader, section: Int)
{
let sectionsNeedReload = getSectionsNeedReload(section)
self.tableView.beginUpdates()
self.tableView.reloadSections(IndexSet(sectionsNeedReload), with: .automatic)
self.tableView.endUpdates()
}
すべてが正常に機能し、アニメーション化されていますが、コンソールで展開されたセクションを折りたたむと、これが表示されます[アサート]:
[アサート] preReloadFirstVisibleRow(0)の新しいグローバル行インデックスを特定できません
これは、開いているセクションが同じであるか、閉じている(折りたたまれている)か、別のセクションを開いて以前開いていたセクションを「自動閉じる」かどうかに関係なく発生します。
データについては何もしていません。それは永続的です。
誰が不足しているものを説明するのを手伝ってくれる?ありがとう