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

Cannot hide MBProgressHUD in iOS

I tried this code to show MBProgressHUD but when I click on another tab and back to this tab, MBProgressHUD cannot hide. I tried this for 2 functions: For updatearray() MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view…
Joson Daniel
  • 409
  • 1
  • 9
  • 18
2
votes
3 answers

How to add MBProgressHUD waiting loading data in iOS

I have a problem: I used AFNetworking to get data from server, i used NSOperationQueue to add many operation to it, in each request, I added this operation to queue and used waitUntilAllOperationsAreFinished as bellow : request 1 ... [queue…
Joson Daniel
  • 409
  • 1
  • 9
  • 18
2
votes
1 answer

MBProgressHUD gracetime and minimumtime not working properly. how to implement.?

I am using MBProgressHUD for showing loading while performing local long method to put user good experience. All working fine but now i have to implement like that if the method executes within a second than the loading should not be appear. I have…
Jaimin Modi
  • 139
  • 1
  • 2
  • 12
2
votes
3 answers

MBProgressHUD activity indicator doesn't show in viewDidAppear after segue is performed

I have two UITableViewControllers A and B, and this is what I'm trying to do when I click on a table view cell in A: Prepare to segue from A to B by setting some of B's variables from A. Perform segue from A to B. B appears. Display a "Loading"…
Matthew Quiros
  • 13,385
  • 12
  • 87
  • 132
2
votes
1 answer

Why MBProgressHUD not show, when an alert show before HUD show?

I use this code to init MBProgressHUD UIWindow *window = [[UIApplication sharedApplication] keyWindow] _hud = [[MBProgressHUD alloc]initWithWindow:window]; _hud.dimBackground = bDim; _hud.labelText = message; [window…
HamasN
  • 524
  • 1
  • 5
  • 20
2
votes
0 answers

Spinning wheel blocks lazy image load

It sounds a bit strange, but since i use a spinning wheel indicator, the lazy image load don't works for the first image views (these once that are shown in the first screen). If the user scrolls down all other Images in the TableView loading…
2
votes
4 answers

IOS MBProgressHUD display location error(it is not center,the loading display on left top.)

I use MBProgressHUD showWhileExecuting to query some data from network,but the MBProgressHUD is not center sometimes on pictures(red number): loading displayed on left top and the backgound displayed at center. 1.loading display is not on…
zt9788
  • 948
  • 4
  • 16
  • 31
2
votes
1 answer

MBProgressHUD in UITabBarController

This has been annoying me for a good week, as i have previously used MBProgressHUD in prior versions of the app. No matter how I try to set the code in my project to show MBProgressHUD, I always receive 'Apple Mach-O Linker Error':"Undefined symbols…
2
votes
1 answer

MBProgressHUD & SDWebImage - HUD not showing

I'm using SDWebImagePrefetcher to prefetch a list of images off my plist. I was editing the method trying to alloc a UIViewController which would have shown an MBProgressHUD HUD to indicate the progress. Problem is that the HUD won't show in any…
Phillip
  • 4,276
  • 7
  • 42
  • 74
2
votes
1 answer

MBProgress HUD not showing the correct mode always default mode

I am trying to initalize the MBProgress HUD with a mode but the progress pops up only with the label not the annular mode. //Addition of new HUD progress whilst running the process field entries method HUD = [[MBProgressHUD alloc]…
StuartM
  • 6,743
  • 18
  • 84
  • 160
2
votes
3 answers

iphone - MBProgressHUD prevent locking navigationController

In my application I have UINavigationController inside UITabBar When I display my HUD the whole screen is locked except TabBar. So the only way to dismiss my HUD is to tap on a tab. I would also like to dismiss it when I tap on "back" button on my…
Oleg
  • 2,984
  • 8
  • 43
  • 71
2
votes
2 answers

How use two subsequent MBProgressHUD messages

I wan to to show a message using the MBProgressHUD during the uploading via NSURL string. So i code that: MBProgressHUD *hud1 = [MBProgressHUD showHUDAddedTo:self.view animated:YES]; hud1.labelText = @"sending info ..."; hud1.minShowTime…
doxsi
  • 1,002
  • 19
  • 42
2
votes
2 answers

Application Crash due to Memory issue / MBProgressHUD Indicator

I have a strange issue . I am currently working on a mail app and it used to crash randomly without and error or logs in my console . I checked my Crash Log it showed me Low Memory warning with jettisoned written next to my App. So I suspect…
Kunal Balani
  • 4,739
  • 4
  • 36
  • 73
2
votes
3 answers

I'm Trying to Show Progress With MBProgressHUD using MWFeedParser

Hello I've been trying to display progress using the annular determinate for the last hour and I can't seem to make it do what I want. It either disappears way before my table view is loaded with content or never loads to progress bar fully. In my…
Year3000
  • 459
  • 2
  • 7
  • 15
2
votes
2 answers

MBProgressHUD issue in main thread.

I would like to use MBProgressHUD the following way: In my method I call multiple servers and other actions that require showing a HUD. I was wondering what would be the best way to "hold" the main thread until those particular actions are done.…
moshikafya
  • 3,190
  • 5
  • 22
  • 27