TableView freeze after pushing new ViewController
Thank you for this awesome library,
I've added ExpandableCell in jonkykong/SideMenu pod, but when I try to push a new ViewController and back to the (Side Menu) I can't click on any cell in the TableView at all, all cells freeze. I tried to reloadData and reloadSection but when I back to the menu the cells disappear. I also tried it in the demo, and there is the same issue.
How to solve this issue?
ExpandableTableView.swift 19 line public var expandableDelegate: ExpandableDelegate? { source update weak public var expandableDelegate: ExpandableDelegate? {
not work. I'm try in TabView. it also freeze after switch tab and back.
not work. I'm try in TabView. it also freeze after switch tab and back.
I tried it a lot but it has the same issue.
not work. I'm try in TabView. it also freeze after switch tab and back.
I tried it a lot but it has the same issue.
I have solved this issue by https://github.com/younatics/ExpandableCell/issues/64
not work. I'm try in TabView. it also freeze after switch tab and back.
I tried it a lot but it has the same issue.
I have solved this issue by #64
Just call tableView.autoReleaseDelegate = false only?
tableView.delegate = self in viewWillAppear
tableView.delegate = self in viewWillAppear
Thanks, your solution is working for me