NimbusKit
1.2.1 - Fork Nimbus on Github - Visit the Nimbus Wiki
The iOS framework that grows only as fast as its documentation
|
The NINetworkTableViewController class provides a similar implementation to UITableViewController but with a more structured view hierarchy.
UITableViewController's self.view is its self.tableView. This can be problematic if you want to introduce any sibling views that have a higher or lower z-index. This class provides an implementation that, to the best of its abilities, mimics the functionality of UITableViewController in every way but one: self.tableView is a subview of self.view. This simple difference allows us to add new views above the tableView in the z-index.
In this particular implementation we include an activity indicator component which may be used to show that data is currently being loaded.
Tasks | |
(void) | - setIsLoading: |
Sets the loading state of the view controller.
isLoading | When YES, the table view will be hidden and an activity indicator will be shown centered in the view controller's view. When NO, the table view will be shown and the activity indicator hidden. |