This repository has been archived by the owner on Jun 30, 2021. It is now read-only.
Version 0.2.0
Pre-release
Pre-release
Version 0.2.0
- Now works with any UIViewController subclass
- Update example project to contain a
UITableViewController
example as well aUICollectionViewController
exmaple - Refactor some uneeded code
- Rerun Jazzy for code documentation
Breaking API CHanges:
-
Call for reloading of empty state view has changed
Before
// Called whenever data has changed, only worked for table views self.reloadTableViewEmptyState()
Now
// Called whenever data has changed, now works with collectionview or tableview // If tableView controller, or controller with tableView property self.reloadEmptyState(forTableView: self.tableView) // OR if collectionview controller, or controller with collectionView property self.reloadEmptyState(forCollectionView: self.collectionView)