Created
August 18, 2015 15:42
-
-
Save dutran90/a2513a8b9c894c8b7460 to your computer and use it in GitHub Desktop.
MBHUDProgress
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
// BASIC | |
MBProgressHUD *hud; | |
hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES]; | |
hud.mode = MBProgressHUDModeIndeterminate; | |
hud.labelText = @"loading..."; | |
[hud show:YES]; | |
--> [hud hide:YES]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment