Skip to content

Instantly share code, notes, and snippets.

@isoiphone
Created December 6, 2013 19:34
Show Gist options
  • Save isoiphone/7830827 to your computer and use it in GitHub Desktop.
Save isoiphone/7830827 to your computer and use it in GitHub Desktop.
- (void)notImplemented
{
[self performBlockOnUI:^{
MBProgressHUD* hud = [MBProgressHUD showHUDAddedTo:[self viewForProgressHUD] animated:YES];
hud.labelText = tr(@"Not implemented");
[self performBlockOnUI:^{
[MBProgressHUD hideHUDForView:[self viewForProgressHUD] animated:YES];
} afterDelay:1.5f];
}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment