You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
}
}`
The text was updated successfully, but these errors were encountered:
In your examples you never set the delegate - this won't work for table view
this is what's missing :
`class SelectionTableVC: CollapsibleTableSectionViewController {
}`
The text was updated successfully, but these errors were encountered: