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

delegate is not set

Open galblank opened this issue 6 years ago • 0 comments

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 = self
    // Do any additional setup after loading the view.
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

}`

galblank avatar Apr 25 '18 17:04 galblank