CollapsibleTableSectionViewController icon indicating copy to clipboard operation
CollapsibleTableSectionViewController copied to clipboard

:tada: Swift library to support collapsible sections in a table view.

Results 15 CollapsibleTableSectionViewController issues
Sort by recently updated
recently updated
newest added

At the moment, the section header looks like this: it will be really nice if we can allow user to specify their own view/design. I guess what we can do...

enhancement

1. Changed the arrowLabel to arrowImageView, so it can be changed by whom ever is using this framework. added a default arrow for the framework that is less pointy than...

Is it possible to tap section header programmatically? Thanks

I have the content for the CollapsibleTableSectionViewController coming from an API and i have tried using several methods like the following: ``` DispatchQueue.main.async{ self.tableView.reloadData() self.tableView.reloadSectionIndexTitles() self.tableView.reloadSections(NSIndexSet(index: 1) as IndexSet, with:...

Hi, I'm making updates for Open Collective. Either you or another core contributor signed this repository up for Open Collective. This pull request adds financial contributors from your Open Collective...

Hi, I have successfully display the sections and child cells correctly based on your example. But when I tap on the section header the cell is not expand or collapse,...

![img_5969duz](https://user-images.githubusercontent.com/12333651/50559311-a292b800-0d06-11e9-914f-803e39ec8469.png) ![img_5969duz1](https://user-images.githubusercontent.com/12333651/50559312-a3c3e500-0d06-11e9-803a-7aed2e8d69ad.png) ************** Tableview in section does not prevent the scroll position of the animation in dimension change to go to the negative values. If the tableview data exceeds the...

The strong reference to TableViewHeader's delegate turned out to be the source of a memory leak in my app. Changing this reference to weak allows the parent CollapsibleTableViewController to be...