ExpyTableView v1.2.2 Release Notes

Release Date: 2020-10-19 // over 3 years ago

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