ExpyTableView v1.0 Release Notes

Release Date: 2018-03-08 // about 6 years ago
  • 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