Questions tagged [mbprogresshud]

MBProgressHUD is an iOS drop-in class that displays a translucent HUD with an indicator and/or labels while work is being done in a background thread.

MBProgressHUD is meant as a replacement for the undocumented, private UIKit UIProgressHUD with some additional features. MBProgressHUD works on any iOS version and is compatible with both ARC and non-ARC projects.

The github page is here

322 questions
0
votes
1 answer

Display location service alert on top of all views

My app start by loading files at the splash image with progressHUD window. In appDelegate i check if the location service in on,if its ON so no problem,after finish loading, the progressHUD disappear,but if the user getting alert that request…
vadim
  • 119
  • 3
  • 14
0
votes
1 answer

MBProgressHUD UI not responding

I found my UI to be unresponsive while using the MBProgress HUD, while debugging on device it shows me the message "wait_fences failed to receive reply". I think i am using MBProgressHUD in wrong way. can someone please tell me what's the best way…
xmax
  • 231
  • 1
  • 3
  • 8
0
votes
1 answer

Removing MBProgressHUD when dialog is displayed and selector method not complete

I am using code to call a method and show the HUD as below HUD = [[MBProgressHUD alloc] initWithView:self.view]; [self.view addSubview:HUD]; HUD.delegate = self; HUD.labelText = @"Signing you up"; // myProgressTask uses the HUD instance to…
StuartM
  • 6,743
  • 18
  • 84
  • 160
0
votes
1 answer

Adding a completion call back for MBProgressHUD

I would like to add a completion callback on my method so that the progress of the HUD knows it is complete. MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES]; hud.mode = MBProgressHUDModeAnnularDeterminate; hud.labelText =…
StuartM
  • 6,743
  • 18
  • 84
  • 160
0
votes
1 answer

Having issue updating hud ivar during in-app purchase

I have recently set-up an in-app purchase mechanism in my app. During the purchase i would like to update an hud (i am using the mbprogresshud) according to two kinds of events: i start a purchase and i receive a validation of the purchase. The…
tiguero
  • 11,477
  • 5
  • 43
  • 61
0
votes
2 answers

Progress HUD is not shown before parsing XML

I'm actually using the NSXMLParser class for parse an XML file hosted on a server. While the parser is doing his job I want to show a progress HUD grabbed there : https://github.com/jdg/MBProgressHUD Here is how I show the Progress HUD…
Edelweiss
  • 621
  • 1
  • 9
  • 24
0
votes
2 answers

MBProgressHud not hiding after second look

I have a MBProgressHUD that I want to display when switching tabs. This is in my app delegate. I have this code here to display the HUD on only the first three tabs -(void)tabBarController:(UITabBarController *)tabBarController…
BigT
  • 1,413
  • 5
  • 24
  • 52
0
votes
2 answers

Showing MBProgressHUD during method duration

I have a method to get contacts from the address book and doing some stuff with them ("getContactInformation"). This process is a bit long (a few seconds) and after this process I show a new ViewController. To make it friendly to the user I would…
rai212
  • 711
  • 1
  • 6
  • 20
0
votes
2 answers

MBProgressView sleep for mixed views

I'm trying to show a mix of HUDs in my app, so for example, when a user taps "login", I want my HUD to display the spinner saying "logging in...", then change to a checkmark image saying "logged in!", then hide. I'm trying to accomplish this using…
quantum
  • 1,400
  • 6
  • 21
  • 34
0
votes
1 answer

Show Loading Message if table takes a long time

I want to display a "Loading" message if my table is not filled with all the information in 3 seconds. Here is what I want my table to do: -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ …
BigT
  • 1,413
  • 5
  • 24
  • 52
0
votes
1 answer

How to integrate MBProgressHUD when loading a UIwebview?

I am a novice in ios development. I have integrate A UIWebView in my app to load a web page. This loading is done in viewdidLoad function. I would like to integrate MBProgressHUD during the loading of the webpage. Can you help me please? Do you have…
wawanopoulos
  • 9,614
  • 31
  • 111
  • 166
0
votes
3 answers

MBProgress HUD crashing application on reloadData on tableView

I am using this piece of code to display an MBProgressHUD over the top of one of my views while I download data from a web-service, the only problem is that occasionally this code will cause the app to hang, doing nothing while the HUD displays…
Jack Nutkins
  • 1,555
  • 5
  • 36
  • 71
0
votes
1 answer

ASINetworkQueue and MBProgressHUD

I use a ASINetWorkQueue in a ViewController. So, during the queue is performing, i want to show a MBProgressHUD. - (void) addItemsToEndOfTableView{ NSLog(@"add items"); [[self networkQueue] cancelAllOperations]; // Création d'une nouvelle file…
Astram56
  • 536
  • 1
  • 7
  • 17
0
votes
2 answers

MBProgressHud is not changing with device orientation.?

I am using MBProgressHud to show a loading indicator on a splash view but this does not change with device orientation. My code is: splashView = [[UIImageView alloc] initWithFrame:self.window.frame]; if (UI_USER_INTERFACE_IDIOM() ==…
user1396086
0
votes
5 answers

MBProgressHUD change label.text in connectionDidFinishLoading

I'm using MDProgressHUD to manage the progress of my downloads which uses NSConnection. Everything is working great. I'm having an issue when I try to change the HUD labelText from saying Downloading to Finishing Up when connectionDidFinishLoading…
user1086377
  • 328
  • 5
  • 16
1 2 3
21
22