Questions tagged [svprogresshud]

SVProgressHud for iOS

SVProgressHud is the library created by Sam Vermette to display an easy, lightweight and unobtrusive progress HUD for your iOS app

SVProgressHUD is created as a singleton (i.e. it doesn't need to be explicitly allocated and instantiated; you directly call [SVProgressHUD method]).

To download the latest project visit GITHub.

73 questions
0
votes
2 answers

how to set and dismiss SVProgressHUD when move to another ViewController

I want to show progress bar when press a button to move another ViewController (This ViewController is load with huge amount of data from the WebService) and after load all data progress bar will be dismiss. I mean first press a button then…
MUNNA
  • 25
  • 9
0
votes
2 answers

SVProgressHUD Can't show the status

When I use [SVProgressHUD show], delay 2 seconds, then use [SVProgressHUD dismiss], the HUD dismiss. But when I use [SVProgressHUD showErrorWithStatus:@"test"], the hud can' show. Can someone stay me why? - (void)viewDidLoad { [super…
CveniEs
  • 3
  • 3
0
votes
1 answer

Use of SVProgressHUD in share extension

I use SVProgressHUD in an iOS app and it's working perfectly. I'd like to use it also for the share extension of this app but it does not show app. I'm using a custom view for the share extension view and here is the code I use to call…
radar
  • 500
  • 1
  • 6
  • 24
0
votes
3 answers

SVProgressHUD not working

Its not working did everything like in this video https://www.youtube.com/watch?v=ZpK5KQdn95w I get the error that the Module SVProgressHUD is not found here is my Podfile # Uncomment the next line to define a global platform for your project …
Zarkex
  • 51
  • 7
0
votes
0 answers

SVProgressHUD HUD is changing position on screen

I have a weird behavior with SVProgressHUD. When I launch it : SVProgressHUD.show(), the HUD appears above the center and 1-2 second after, it goes down to the center. I want to have it directly in the center of the View. By the way, I have let…
user3239711
  • 639
  • 1
  • 7
  • 24
0
votes
1 answer

How to use SVProgressHUD in both ios app and its extension

I have a project of an iOS app and its share extension using libraries like Alamofire and FileKit. Everything was working perfectly with the following Podfile: target 'myApp' do use_frameworks! pod 'BRYXBanner' end target 'myAppShareExtension'…
radar
  • 500
  • 1
  • 6
  • 24
0
votes
0 answers

SVProgressHUD likely HUD in landscape or Horizontal mode

I'm writing a view in "landscape mode" implement by changing the view's transform. And I need a Hud 4 showing infos in this "landscape mode"(I've disable the landscape left and right mode). I've searched the API of SVProgressHUD and seem there's no…
d0ye
  • 1,580
  • 1
  • 15
  • 26
0
votes
2 answers

iOS - Show SVProgressHUD message on screen without interrupting user interaction

I'm making a synchronize function that syncs local Core Data with the server. I want to make the synchronizations happen in the background without disrupting user interaction. When I receive the response (whether success or failure) the app should…
Lê Khánh Vinh
  • 2,591
  • 5
  • 31
  • 77
0
votes
1 answer

SVProgressHud not showing

I want to add SVProgressHud to show progress. I have use method : [SVProgressHUD showWithStatus:@"Please Wait..."]; In didFinishLaunchingWithOptions method of AppDelegate. But I am not able to see my progress view.
Amrit
  • 301
  • 2
  • 14
0
votes
1 answer

SVProgressHUD dismiss not working in custom class

Firstly, I've added some functions which need to call from different ViewControllers in one class file. For those function, I've add SVProgressHUD as preprocess and dismiss after all process is finished. SVProgressHUD is displaying correctly before…
PPShein
  • 13,309
  • 42
  • 142
  • 227
0
votes
0 answers

SVProgressHUD mask not changing

I have problem with maskType for SVProgressHUD. This HUD is working perfect for show and dismiss. My problem is when I call [SVProgressHUD showWithMaskType:(SVProgressHUDMaskType)SVProgressHUDMaskTypeBlack]; [SVProgressHUD show]; nothing…
Stefan
  • 1,283
  • 15
  • 33
0
votes
1 answer

SVProgressHUD with query findObjectsInBackgroundWithBlock?

I would like to make a SVProgressHUD with a parse query findObjectsInBackgroundWithBlock. When I test, the hud is leaving 1 second after the view appears. How can I make that the hud stay to the end of the query (I know it's a background query...)…
xcode_Dev
  • 237
  • 4
  • 16
0
votes
0 answers

SVProgressHud not displaying at the right time

I have the following code. What it does is performs a series of synchronizations (using AFNetworking) by calling another class/method - POSRestletManager. Before each method, starting at getSettingsWithEnv, I am displaying a message (using…
RayT
  • 3
  • 2
0
votes
1 answer

SVProgressHUD not showing progress

SVProgressHUD is not showing progress as expected. Should I be doing something different? [SVProgressHUD showProgress:(count/total) status:@"Downloading..."]; Is there a different method to call to set the progress?
bdparrish
  • 3,216
  • 3
  • 37
  • 58
0
votes
1 answer

SVProgressHUD how to show in next ViewController

I am having a TableViewController with some items and then having a filterViewController, where filter data in TableViewController according to the values. It is made with using UISwitch. Anyway, I would like to ask, how to add a SVProgressHUD to…
Milan1111
  • 185
  • 3
  • 13