Skip to content

Instantly share code, notes, and snippets.

@dutran90
Created August 18, 2015 15:42
Show Gist options
  • Save dutran90/a2513a8b9c894c8b7460 to your computer and use it in GitHub Desktop.
Save dutran90/a2513a8b9c894c8b7460 to your computer and use it in GitHub Desktop.
MBHUDProgress
// 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