Created
December 13, 2016 03:00
-
-
Save omayib/4f6bafcb7bb4fe0786b124167adf57aa to your computer and use it in GitHub Desktop.
Start with protocol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protocol UILoadingView { | |
func showLoading() | |
func showLoadingWithLabel(title:String?, subtitle:String) | |
func showErrorWithLabel(message: String) | |
func showSuccessWithLabel(message:String) | |
func hideLoading() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment