Skip to content
This repository has been archived by the owner on Nov 5, 2020. It is now read-only.

Necessary changes

Latest
Compare
Choose a tag to compare
@okhanokbay okhanokbay released this 08 Mar 05:05
· 24 commits to master since this release
37c4969

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