Klevison Matias

Results 14 comments of Klevison Matias

1) If you comment all `sectionHeaderViewOpenedAtIndex` code (`reloadOpenedSection`) what happens?

When I asked about `indexPathsToInsert` and `indexPathsToDelete` you have shown me: `indexPathsToInsert = [[4, 0]]` `indexPathsToDelete = [[1, 0]]` Is this values are correct? It should: 1) close section row...

After you have all data, try: ```swift sections = allSetions() self.tableView.reloadData() ```

You need to "update" an opened section, right? On the example project (https://github.com/klevison/AccordionTableViewController/tree/master/Example) you can see how to do it. Something like: ``` swift func updateSectionOne() { let section =...