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
{{ message }}
This repository has been archived by the owner on Nov 5, 2020. It is now read-only.
Sections are being expanded and collapsed when you use ExpyTableView.
The cell instance that you return from expandableCellForSection: data source method is actually the first row of belonged section. Thus, when you return 4 from numberOfRowsInSection data source method, first row refers to expandable cell and the other 3 rows refer to other rows in this section.
So, it is the desired result and it is not the number of rows that will expand, it is the number of the rows in section including expandable cell.
In a future version, this situation will be more clear by little changes.
Hi, thanks for the prompt reply. Thought it was a bug as was first confused trying to implement with one of the sections being non expandable - and the delegate not asking for it as I didn't have the canExpand method, so had the first row missing. Then tried with the Basic example and had that. More clear now and after reading the code comments, but perhaps would be good to add some of these intricacies into the readme at some point before it's more clear implementation wise.
But sections expand to 3 rows :/
The text was updated successfully, but these errors were encountered: