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
8
votes
3 answers

MBProgressHUD disabling interaction with UITableViewController

I'm using an MBProgressHUD inside of a UITableViewController. While I am able to get the HUD to display successfully, the HUD intercepts all of the screen's touch notifications and prevents scrolling in my UITableView. I know that the intended…
Dany Joumaa
  • 2,030
  • 6
  • 30
  • 45
7
votes
8 answers

How to fix the position of MBProgressHUD to center in a UITableView

I have a scenario where I am using third party library MBProgressHUD on a UITableViewController but the issues is whenever I scroll up and down the HUD moves with the scroll. I don't want to disable the UITableView scroll and also I want to keep…
7
votes
4 answers

MBProgressHUD and UITableView

I am displaying a HUD while populating the TableView, but it seems to be showing behind the TableView (tableview separator breaking the hud). Here's the code in the TableViewController: - (void)viewDidLoad { [super viewDidLoad]; MBProgressHUD *hud…
6
votes
0 answers

UIKit _wrapRunLoopWithAutoreleasePoolHandler + 36 : Occurred occasionally from Crashlytics Report

I got this crash report from Crashlytics UIKit _wrapRunLoopWithAutoreleasePoolHandler + 36 And it just happened only one time from total users of my app and I have never seen this crash before when it is in debug version. From searching ,it is…
Kong Hantrakool
  • 1,865
  • 3
  • 20
  • 35
6
votes
4 answers

MBProgressHUD custom view doesn't appear

I'm trying to show an image on MBProgressHUD by using this code MBProgressHUD *HUD = [[MBProgressHUD alloc] initWithView:self.navigationController.view]; [self.navigationController.view addSubview:HUD]; HUD.customView = [[[UIImageView alloc]…
OXXY
  • 1,047
  • 2
  • 18
  • 43
6
votes
1 answer

MBProgressHUD blocks user interaction with a tableview

I have a uitableview which loads data from internet and during this period im displaying MBProgressHUD. But the problem is the user cannot touch anything including previous page button before the table loads. Here is my codein two different…
birdcage
  • 2,638
  • 4
  • 35
  • 58
6
votes
2 answers

why set MBProgressHUD's hide to YES, but isHidden method is NO?

I am using a MBProgressHUD view to show loading state when i am downloading something from the Internet. When download is finished, i call the hide method to hide the view. I want to use a timer to judge whether download is finished by checking the…
chancyWu
  • 14,073
  • 11
  • 62
  • 81
6
votes
3 answers

Allow User to Cancel MBProgressHUD when JSON call takes too long

I've read and read on SO about this, and I just can't seem to find anything that matches my situation. I've got MBProgressHUD loading when the view appears, as my app immediately goes to grab some webservice data. My problem is the back button on my…
gummo
  • 85
  • 1
  • 6
6
votes
5 answers

MBProgressHUD Block interface until operation is done

I need to block the interface until the MBProgressHUD operation is done. I did refer this thread, Block interface until operation is done According to it, we should disable each individual item which wont work for me. My case is I need to disable…
Dilshan
  • 3,231
  • 4
  • 39
  • 50
5
votes
0 answers

IPad MBProgressHUD does it support device orientation change?

I have been using MBProgressHUD for displaying hud. Everything works ok in portrait mode, but when i change device orientation, hud is not rotated properly? Is there some property to set hud the right way?
MegaManX
  • 8,766
  • 12
  • 51
  • 83
5
votes
3 answers

MBProgressHud View Customization Not Work In Swift 3 And Not Showing?

i am using the following code but not showing progress hud so please help for that.simple hud showing fine but customise not showing let loadingHUD = MBProgressHUD() loadingHUD.mode = MBProgressHUDModeCustomView loadingHUD.labelText =…
BHAVIK
  • 890
  • 7
  • 35
5
votes
1 answer

Showing Toast above keyboard in Obejctive c

I have write a function thats displays the toast on UIVIewController. The toast function is given below -(void)showToast:(NSString*)string { MBProgressHUD *hud; hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES]; hud.mode =…
Usman Javed
  • 2,437
  • 1
  • 17
  • 26
5
votes
3 answers

ProgressHUD and TouchUpInside

I have my ViewController like public partial class TestView : MvxViewController { ...code here... } and i load my next ViewController on button event TouchUpInside like that: btnSearch.TouchUpInside += (object sender, EventArgs e) => { …
Luigi Saggese
  • 5,299
  • 3
  • 43
  • 94
4
votes
4 answers

MBProgressHUD not show

When I write like this, it works as expected: override func viewDidLoad() { super.viewDidLoad() MBProgressHUD.showAdded(to: navigationController!.view, animated: true) } However, when I put it in DispatchQueue.main block, the hud doesn't…
a_tuo
  • 651
  • 7
  • 23
4
votes
2 answers

How to illustrate a background task using GCD?

I want to illustrate the progress on MBProgressHUD item, but when i triger this method : - (IBAction)signInBttn:(id)sender { MBProgressHUD *hudd = [MBProgressHUD showHUDAddedTo:self.view animated:YES]; hudd.mode =…
1
2
3
21 22