ExpyTableView v1.2.2 Release Notes
Release Date: 2020-10-19 // over 4 years ago-
No data yet ๐
You can check the official repo
Previous changes from v1.0
-
BREAKING CHANGES:
- Removing unnecessary "expandableSection" array and its use cases
- Clean up the code, rename some delegate methods:
OLD func expandableCell(forSection section: Int, inTableView tableView: ExpyTableView) -> UITableViewCell
OLD func canExpand(section: Int, inTableView tableView: ExpyTableView) -> Bool
๐ NEW func tableView(tableView: ExpyTableView, expandableCellForSection section: Int) -> UITableViewCell
๐ NEW func tableView(_ tableView: ExpyTableView, canExpandSection section: Int) -> Bool
๐ see commit "134e83f" for more details.
โ ADDITIONS:
๐ Support Swift 4.0 #15
Completes #21 and adds abstractions to ExpyTableView class
โ Add explanations for #12