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
36
votes
1 answer

MBProgressHUD blocking user interaction

My application has a MBProgressHUD on the screen while the CLLocationManager is getting the user current location at a separate thread in the background. Sometimes the location process start to take so long and obviously I would like to let the user…
vilelam
  • 804
  • 1
  • 11
  • 19
28
votes
10 answers

UITableView headings shown on top of MBProgressHUD

So I have a subclass of UITableViewController that loads some data from the internet and uses MBProgressHUD during the loading process. I use the standard MBProgressHUD initialization. HUD = [[MBProgressHUD alloc] initWithView:self.view]; …
Chris Ballinger
  • 796
  • 8
  • 20
25
votes
9 answers

Use of MBProgressHUD Globally + make it singleton

In my Project, each of the user interaction events make a network call (Which is TCP, not HTTP). I need Activity Indicator to be global to show from a random UIViewController and hide from NetworkActivityManager Class (a custom class to handle…
viral
  • 4,168
  • 5
  • 43
  • 68
24
votes
5 answers

Alternatives for MBProgressHUD?

I've used SVProgressHUD which I liked but it didn't support orientation changes. I am using MBProgressHUD but it is a modal HUD. Is there any good alternative to these? I need the HUD to be non-modal and needs to support orientation changes.
Gary
  • 4,198
  • 2
  • 21
  • 26
19
votes
3 answers

Why is a static library's header file not found for archiving?

I can build for debugging just fine. I've triple checked that the static library is included in the build phases settings for the project. I've also tried other things like header include paths and such to no avail. When I try to build an IPA for…
Brenden
  • 7,708
  • 11
  • 61
  • 75
18
votes
1 answer

Run MBProgressHUD in another thread?

I am using MBProgressHUD to display a "busy" animation to use user while a UITableView is being populated. The UITableView blocks the main thread so the animation does not even appear until the table finishes loading. Is there a way to make the busy…
Nippysaurus
  • 20,110
  • 21
  • 77
  • 129
18
votes
4 answers

MBProgressHUD to show label text in more than one line

Hi i have a MBProgressHUD on my iPad screen. Works perfectly fine. But i want to change the label to show in three lines.Like this self.hud = [[MBProgressHUD alloc] initWithView:self.navigationController.view]; self.hud.frame = CGRectMake(0,…
RookieAppler
  • 1,517
  • 5
  • 22
  • 58
15
votes
4 answers

MBProgressHUD armv7 error

i'm trying to use MBProgressHUD. i added header an .m to project, imported header in class and call MBProgressHUD from an ibaction in this way: -(IBAction)submitForm:(id)sender{ MBProgressHUD *HUD = [[MBProgressHUD alloc]…
Jayyrus
  • 12,961
  • 41
  • 132
  • 214
13
votes
4 answers

MBProgressHUD not working in swift: cannot import and use

I used cocoapods to install MBProgressHUB and in bridging header I cannot just do #import "MBProgressHUD.h" I changed to #import "MBProgressHUD/MBProgressHUD.h" the import is OK but I cannot use it in swift code? anything I do wrong? how can I…
Junchao Gu
  • 1,815
  • 6
  • 27
  • 43
13
votes
5 answers

How to track progress of multiple simultaneous downloads with AFNetworking?

I am using AFNetworking to download files that my app uses for a sync solution. At certain times, the app downloads a series of files as a batch unit. Following this example, I run the batch like this: NSURL *baseURL =
Jason
  • 14,517
  • 25
  • 92
  • 153
12
votes
2 answers

MBProgressHUD cannot cover Keyboard

When I try to show a MBProgressHUD while the keyboard is also showing, I use the code below but the HUD object cannot cover the keyboard: SNSSharerAppDelegate *delegate = [[UIApplication sharedApplication] delegate]; HUD = [[MBProgressHUD…
Smeegol
  • 2,014
  • 4
  • 29
  • 44
12
votes
2 answers

Assertion failure using MBProgressHUD - View must not be nil

I am trying to use the MBProgressHUD within an application. I am getting an error at the point the HUD is added to the view. This is the code that adds the progress bar to the view. HUD = [[MBProgressHUD alloc]…
StuartM
  • 6,743
  • 18
  • 84
  • 160
9
votes
5 answers

Position MBProgressHUD at the Bottom/Top of the screen

Is there a way to make the MBProgressHUD show at the bottom or top of the screen? I have tried setting the frame using [hud setFrame:....];, initWithFrame, and setting thecenter property of the hud. None of these worked. I did an NSLog() of the…
kRiZ
  • 2,320
  • 4
  • 28
  • 39
9
votes
1 answer

load custom view in MBProgressHUD

Is it possible to load a custom view in MBProgressHUD overlay, there is a custom view option with the MBProgressHUD class, but can i assign a XIB view etc with customView??
Faisal Ameer
  • 416
  • 5
  • 13
8
votes
2 answers

MBProgressHud does not work on navigation bar

I have a buttono in the navigation item which action is BUTTON_ACTION. By pressing it, MBProgressHUD is activate and the action work. but the "dimBackground" that make "hidden" the scrren, doe not work on the navigationbar, and the button can be…
doxsi
  • 1,002
  • 19
  • 42
1
2 3
21 22