We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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: .automatic) }
None of these methods calls the CollapsibleTableSectionDelegate methods to reload everything so how can i reload everything?
The text was updated successfully, but these errors were encountered:
A hot fix would be to add the following to CollapsibleTableSectionViewController.swift.
open func reloadData() { _tableView.reloadData() }
From there, you can call it using
self.reloadData()
Sorry, something went wrong.
can you explain more ??
seriously, how's _tableView not exposed to deriving classes dude??
reloadData
I can't see reloadData function. Can you help?
No branches or pull requests
I have the content for the CollapsibleTableSectionViewController coming from an API and i have tried using several methods like the following:
None of these methods calls the CollapsibleTableSectionDelegate methods to reload everything so how can i reload everything?
The text was updated successfully, but these errors were encountered: