-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
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
Cells randomly disappearing and titleLabel.text displays wrong text #23
Comments
@younatics I have same problem |
@andrei0929 @Marolicious @kwongius @ezefranca @kennydust |
@Marolicious @andrei0929 @kwongius @ezefranca @kennydust waiting your respond |
@NrmeenTomoum Although I wasn't implementing the didSelectRowAt indexPath method, I called reloadData in the method but it didn't help me |
are you added tableView.reloadData() at the End of didSelectRowAt func in ExpandableTableView.swift File created by @younatics ? @andrei0929 |
@NrmeenTomoum @andrei0929 I have same problem. Did you find any solution other than |
@damir18yo I didn't do any think more than added tableView.reloadData() at the End of didSelectRowAt func in ExpandableTableView.swift File created by @younatics after that disappeared cell problem appears from scrolling disappeared . |
@NrmeenTomoum I tried your solution but animation becomes very weird |
try to made animation of table . middle @damir18yo |
Faced the same problem. Maybe someone knows a good solution to this problem? @NrmeenTomoum Your advice works, but because of it the animation of opening and closing cells does not work normally. |
Facing the same problem. Update#1: |
This is happening to me too. Did anyone solve this problem ? |
@FaridHaddad Nope. I'll try to, but I don't think I can. Finding a new library would be better. |
Which library can be a good alternative? |
@superhard Well, this still is ExpandableCell's thread, so I can't discuss other libraries here. |
Multiple reports and no definitive solution to the problem? |
In addition, in the example application itself of this git the problem happens: expands all and goes opening and closing, and fiddling with scrool. |
any one have found solution for this issue ?? |
Hey. I have 11 ExpandableCells and about 50 ExpandedCells. I am initializing it like that:
func expandableTableView(_ expandableTableView: ExpandableTableView, expandedCellsForRowAt indexPath: IndexPath) -> [UITableViewCell]? {
The platinumProteinMeals is an array of 11 NDDSections, one section would look like this:
NDDSection(category: "Beef", meals: ["Beef Avocado Salad", "Beef in Chili Sauce", "Beef Soup", "Beef Steak", "Beef Tartar", "Beef with French Beans", "Chilli Lime Beef", "Thai Beef Salad"])
My issue is that the cell randomly disappears (mostly while scrolling) and a wrong
meal
of themeals
array is getting displayed. For example a Turkey meal is being displayed in the Beef ExpandableCell. Any idea how to fix this? Thanks in advanceThe text was updated successfully, but these errors were encountered: