Skip to content

Instantly share code, notes, and snippets.

@tifoaudii
Created July 22, 2021 04:16
Show Gist options
  • Save tifoaudii/e82abd12f77164f182df552ad1722d12 to your computer and use it in GitHub Desktop.
Save tifoaudii/e82abd12f77164f182df552ad1722d12 to your computer and use it in GitHub Desktop.
protocol Loadable {
func showLoading()
}
class HomeViewController: UIViewController, Loadable {
func showLoading() {}
}
class ExploreViewController: UIViewController, Loadable {
func showLoading() {}
}
class ProfileViewController: UIViewController, Loadable {
func showLoading() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment