ios-swift-collapsible-table-section icon indicating copy to clipboard operation
ios-swift-collapsible-table-section copied to clipboard

:iphone: A simple iOS Swift project demonstrates how to implement collapsible table section.

Results 18 ios-swift-collapsible-table-section issues
Sort by recently updated
recently updated
newest added

First of all, tnx a lot for this awesome implementation programmatically. Here my question is I don't why but whenever I add other subviews and add constraints or modified constraints...

i want to add another label inside section , how can i achieve this formate : title-> arrowimage description title and under title , description label and arrow at the...

I want to get the section selected in my table view. I can only get when I select any row in sections. My table looks like this ![screen shot 2018-07-09...

In your examples you never set the delegate - this won't work for table view this is what's missing : `class SelectionTableVC: CollapsibleTableSectionViewController { override func viewDidLoad() { super.viewDidLoad() delegate...

Hello I searched the documents for a delegate that would reload the tableView, not sure if it's available, could you please add it if not. Thanks.

![cover](https://user-images.githubusercontent.com/565300/33296371-1c17e332-d390-11e7-910b-947ed42fcbb3.gif)

The view controller should register the cell and header classes in viewDidLoad() tableView.register(CollapsibleTableViewHeader.self, forHeaderFooterViewReuseIdentifier: "header") tableView.register(CollapsibleTableViewCell.self, forCellReuseIdentifier: "cell") Without registration dequeueReusableHeaderFooterView() and dequeueReusableCell() don't work. If you register then the...

I modified example data so it contains: `public var name: String public var imageURL: String public var items: [Item]` I can get imageURL string within this function: `func collapsibleTableView(_ tableView:...