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
2 answers

MBProgressHUD UIWebView

got a little problem with MBProgressHUD. I have a webview and want to display the HUD while the data is loading. The HUD appears but stays only for a few seconds and disappears already but the webview didn't finish with…
halloway4b
  • 573
  • 1
  • 11
  • 23
2
votes
4 answers

MBProgressHUD indicator does not hide

i am able to show HUD indicator in viewDidLoad successfully but not able hide it in webViewDidFinishLoad method when webview is completely loaded. Please help. i am using below code:: in .h file MBProgressHUD *HUD; in viewDidLoad -…
Mohd Shahid
  • 1,538
  • 2
  • 33
  • 66
2
votes
2 answers

MBProgressHUB don't show in a modal view

I show a modal view with a UITableView when I try to show the HUD (while I loading data), only can view the shadow of HUD, but it don't appears...
2
votes
1 answer

MBProgressHUD crash "The view used in the MBProgressHUD initializer is nil"

someone uses MBProgressHUD ? I want to use the animation showWithLabelMixed in the example provided with MBProgressHUD librairie. i copied this code from the exemple to my project . -(IBAction)showActivity:(id)sender { NSLog(@"Show Activity"); …
Keviin55
  • 117
  • 3
  • 11
2
votes
1 answer

Unable to set MBProgressHUD mode to determinate

In a Swift 3 project I'm working on, I have a simple view controller with a MBProgressHUD. I can get the hud to show, and even though I set the mode property and the label's text, all I get is a spinning UIActivityIndicator. Does anybody know how to…
se_puede_dev
  • 585
  • 7
  • 16
2
votes
0 answers

Use -removeDeferredKeyObserver: instead of -removeKeyObserver

Can't find method with cause this log message. 2016-05-24 13:12:44.451 MYAPPNAME[33530:7289718] Use -removeDeferredKeyObserver: instead of -removeKeyObserver: Any suggestion how to find method? Actually what is [33530:7289718] information. What…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
2
votes
3 answers

Add MBProgressHUD into SDWebImage and UICollectionView

I've been trying to show the progressHUD when my cell loads, and it should show how the download progress are doing. so i placed the code in SDWebimage progress block to get the download progress and pass it into MBProgress HUD to work but i don't…
AaoIi
  • 8,288
  • 6
  • 45
  • 87
2
votes
1 answer

MBProgressHUD showAnimated: whileExecutingBlock: not working

I'm using a method for scanning Bluetooth device, which I import from another framework. The scanning method would take a while, and it'll block the GUI, which is what we never want to happen. I'm also having MBProgressHud, trying to show a hud…
Eddie
  • 1,903
  • 2
  • 21
  • 46
2
votes
1 answer

How do you use MBProgressHUD CustomView/Determinate Loader in Swift?

I am trying to run MBProgressHUD in Swift. I have found I am able to run a spinner that is very similar UIAlert spinner, but that I am having trouble with the other functions. According the MBProgress docs, you can also user a determinate loader as…
2
votes
1 answer

Would I use dispatch in block for MBProgressHud?

In the MBProgressHud documentation it states to use this inside of a dispatch like so: [MBProgressHUD showHUDAddedTo:self.view animated:YES]; dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{ // Do something... …
James
  • 201
  • 4
  • 13
2
votes
0 answers

MBProgressHUD goes background

I am doing Facebook integration, first i have to authenticate and then i have to fetch details. During this process i am showing HUD loader. After authentication the Hud fades and not showing clearly.My code follows,please suggest me if i am doing…
user2702179
  • 187
  • 2
  • 13
2
votes
2 answers

AVPlayer have still a delay after status reached "ReadyToPlay"

I want to play mp3 files from my Server, i do the following: NSURL *url = [NSURL URLWithString:item.audioUrl]; AVPlayerItem *playerItem = [AVPlayerItem playerItemWithURL:url]; self.player = [AVPlayer playerWithPlayerItem:playerItem]; self.player…
Davis
  • 1,253
  • 4
  • 17
  • 38
2
votes
1 answer

Why is the HUD not showing?

Most of my data is coming from a web service and it can take quite a bit of time. Especially on lesser networks. The screen comes in black. I can see from NSLogs that the data is sowing down the pipe but the indicator is not showing. Then when it…
Raymond
  • 477
  • 2
  • 5
  • 15
2
votes
1 answer

MBProgressHUD is not showing sometime in iOS

I am using MBProgressHUD Custom Control to show when loading JSON Data from web. I have already find a lot of answer that doesn't show correctly HUD Control in their View. Here is my code to show HUD in my View. [MBProgressHUD…
Fire Fist
  • 7,032
  • 12
  • 63
  • 109
2
votes
2 answers

MBProgressHUD doesn't show when using it in tableView

I'v implemented tableView with searchBar (used searchDispalyController) which user can enter a search term and table view shows which stories contains this search term . after tapping on the cell, a pageBasedView will push to the view which contains…