Estoy implementando encabezados de sección plegables en un UITableViewController.
Así es como determino cuántas filas mostrar por sección:
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return self.sections[section].isCollapsed ? 0 : self.sections[section].items.count
}
Hay una estructura que contiene la información de la sección con un bool para 'isCollapsed'.
Así es como estoy alternando sus estados:
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()
}
Todo funciona y se anima muy bien, sin embargo, en la consola al colapsar una sección expandida, obtengo esto [Afirmar]:
[Afirmar] No se puede determinar el nuevo índice de fila global para preReloadFirstVisibleRow (0)
Esto sucede, independientemente de si es la misma Sección abierta, cerrando (colapsando), o si estoy abriendo otra sección y 'cerrando automáticamente' la sección abierta anteriormente.
No estoy haciendo nada con los datos; Eso es persistente.
¿Alguien podría ayudar a explicar lo que falta? Gracias