Guest User

Untitled

a guest
Jan 15th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. __block bool theResult;
  2. [self.mbProgressHUD showAnimated:YES whileExecutingBlock:^{
  3. theResult = [someClass someMethodThatReturnsTRUEorFALSE];
  4. } completionBlock:^{
  5. [self.mbProgressHUD removeFromSuperview];
  6. if (theResult) {
  7. dispatch_async(dispatch_get_main_queue(), ^{
  8. UIAlertView *theAlert....
  9. [theAlert show];
  10. });
  11. };
  12. }];
Add Comment
Please, Sign In to add comment