I\'d like to use MBProgressHUD (or similar look) as alternative to default UIAlertView. I need a canceling capability on this view.
I came across a very nice API MBProgressHUD, however when I was reading the documentation in the header MBProgressHUD.h I got confused since the doc says that - (id)initWithWindow:(UIWindow *)window;
I want to show an MBProgressHUD in my iPhone app without spawning new threads. I have a very complicated set of business logic which sometimes (but not always) needs to wait for user input, and runn
I\'m trying to simply create a MBProgressHUD, show it, start a synch or asynch request, push a new controller on UINavigationController, and remove said MBProgressHUD. However, the HUD does not appear
- (void) didClickDone{ if (isValide ==0) { (...) [newFormDataRequest setDelegate:self]; [newFormDataRequest startAsynchronous];
I want to add activity indicator or MBProgressHUD when i click on row of table view and disapear when next view\'s table laod.
I am making a application with a tableview in it. I would like to implement a loading screen, using MBProgress开发者_运维问答HUD such that it will display before data is read from internet. However th
so I have a table view and whenever user press a row, another class开发者_如何学Go view shows up. So I wanted to have a loading indicator in between the transition. I am using MBProgressHUD, but it sh
i wrote below code to MBProgressHUD: HUD = [MBProgressHUD showHUDAddedTo:self.view animated:YES]; [self.view addSubview:HUD];
I would like to use MBProgressHUD with... [HUD showWhileExecuting:@selector(fetchDomainStatus) onTarget:self withObject:nil animated:YES];