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
1
vote
1 answer

Changing UIWindow causes SVProgressHUD to not appear

I have 2 UIWindows that I use in my app. In AppDelegate, in the method didFinishLaunchingWithOptions: I simply have: self.windowStartup = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; self.windowSplit = [[UIWindow…
Shane Rayner
  • 672
  • 6
  • 8
1
vote
2 answers

SVProgressHUD 1.0 not dimming and wrong style

I'm using SVProgressHUD 1.0 in my iOS 7 project as follows: [SVProgressHUD showWithMaskType:SVProgressHUDMaskTypeBlack]; and I'm getting a white HUD with a blue circular arrow (like the 3rd one in the image below--"loading"), and no background…
Kent
  • 1,705
  • 3
  • 16
  • 26
1
vote
1 answer

SVProgressHud waits too long to dismiss

I want to display SVProgressHUD during login process. But SVProgressHUD still waits after login. It's dismissed ~15seconds after "Login success" message. Here is my code: [SVProgressHUD show]; __block BOOL result; dispatch_async(queue, ^{ …
zontragon
  • 780
  • 1
  • 9
  • 27
0
votes
2 answers

SVProgressHUD dismiss in viewWillDisappear OK?

Is it OK to call [SVProgressHUD dismiss] without ever showing it? The reason I want to do this is because I want the HUD to always disappear when the view disappears.
Henley
  • 21,258
  • 32
  • 119
  • 207
0
votes
1 answer

How to show SVProgressHUD while loading a link inside iOS WebView

I am trying to show SVProgressHUD while loading a link inside the WebView, in others words, I have a WebView which has a link and I want show the SVProgressHUD when I hit that link. here is my webiew code: class ViewController: UIViewController,…
HATIM
  • 1
0
votes
0 answers

Show SVProgressHUD on viewWillDisappear

Context : My UIViewController is showing an edit profile view, with a few UITextField (first name, last name, birthday, ...). There is no "save button", the values update on the database as soon as the textFieldDidEndEditing is called. I want to…
Quentin Rth
  • 178
  • 1
  • 15
0
votes
3 answers

Xcode Build Errors After Pod Update

I just did a pod update and tried to build my project; getting the following errors: And here is my podfile: # Uncomment the next line to define a global platform for your project source 'https://github.com/CocoaPods/Specs.git' platform :ios,…
user12669401
  • 229
  • 4
  • 12
0
votes
1 answer

SVProgressHUD user interaction Disable not working on Xcode 11 and iOS 13

Don't duplicate the question! I have checked many answers and try many solutions but nothing is woking. I have newly created project on Xcode 11, and add SVProgressHUD on it and showing HUD it was working fine, but background component user…
Nick
  • 875
  • 6
  • 20
0
votes
2 answers

Show progress using SVProgressHUD in Swift

How can I show the progress of downloading using SVProgressHUD in Swift? I've implemented following code but it does not show the progress. SVProgressHUD.show() Alamofire.download( url, method: .get, …
Rohitax Rajguru
  • 893
  • 2
  • 13
  • 35
0
votes
2 answers

Show SVProgressHUD while UIWebView loads

I have a UIWebView set as the view in a ViewController. I would like to display an SVProgressHUD activity indicator while the webpage loads and then dismiss it when it has finished, but I can't seem to get it to work. The web page loads fine, but…
Aaron
  • 358
  • 2
  • 16
0
votes
1 answer

Getting crash on iOS 12 with common signature for SVProgrssHUD

The application recently lived on iTunes store. Hockey app reporting multiple common crash signature for iPhone Model XS and XS Max with iOS 12. 16 ??? 0x00000001054f4a78 -[SVProgressHUD updateMotionEffectForXMotionEffectType:yMotionEffectType:]…
Hiren
  • 12,720
  • 7
  • 52
  • 72
0
votes
1 answer

SVProgressHUD code executes out of order

I'm building a bus predictions app using the NextBus API that will help users get prediction times and bus information. I've implemented a function that takes the user's current location and a chosen address and returns a list of 10 bus routes that…
jrend
  • 784
  • 2
  • 11
  • 30
0
votes
1 answer

Using SVProgressHUD fails to build in Xcode

I have installed SVProgressHud to my Xcode project via cocoa pods but I am getting an error during build time. I have posted an image of the error I am getting. I am using swift 3 and Xcode 8. I have searched everywhere for a solution but can't find…
j.iese
  • 171
  • 2
  • 12
0
votes
1 answer

Screen locked after second SIAlertView message and popViewController

When the request failed, SIAlertView shows error message then click the OK button of SIAlertView, popViewController working and there is no problem but when I tried second time and request failed, popViewController working again but there is gray…
BadCode
  • 131
  • 13
0
votes
1 answer

SVProgressHUD is not working when open an app through click notification in iOS

I have already implemented SVProgressHUD to other pages into app. In this app notification feature is exist. when I received notification and then clicked it open an home page then navigate specific page. In this situation I want when I click…