Sto implementando le intestazioni di sezione comprimibili in un UITableViewController.
Ecco come determino quante righe mostrare per sezione:
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return self.sections[section].isCollapsed ? 0 : self.sections[section].items.count
}
C'è una struttura che contiene le informazioni della sezione con un bool per 'isCollapsed'.
Ecco come sto commutando i loro stati:
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()
}
Tutto sta funzionando e animando bene, tuttavia nella console quando si comprime una sezione espansa, ottengo questo [Assert]:
[Assert] Impossibile determinare il nuovo indice di riga globale per preReloadFirstVisibleRow (0)
Ciò accade, indipendentemente dal fatto che si tratti della stessa sezione aperta, di chiusura (compressione) o se sto aprendo un'altra sezione e 'chiudendo automaticamente' la sezione precedentemente aperta.
Non sto facendo nulla con i dati; è persistente.
Qualcuno potrebbe aiutare a spiegare cosa manca? Grazie