Skip to content

Instantly share code, notes, and snippets.

@LH17
Last active June 5, 2017 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LH17/97188d58872750a77be25a127569087e to your computer and use it in GitHub Desktop.
Save LH17/97188d58872750a77be25a127569087e to your computer and use it in GitHub Desktop.
StateViewController
class StateViewController: UIViewController {}
extension StateViewController: ViewStateProtocol {
@objc func handleTap(_ sender: UIView) {
// for showing the loader
addView(withState: .loading)
// for showing the error message
addView(withState: .error)
// for showing the empty results message label
addView(withState: .empty)
// for removing all the views
removeAllViews()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment