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

Activity Indicator is not showing with SVProgressHUD

I am trying to implement the SVProgressHUD progress activity indicator. I copied the class from the [demo].1 My app loads up but the activity indicator doesn't show up. This is my first time trying to use one of these, so any help would be…
jroyce
  • 2,029
  • 2
  • 22
  • 45
1
vote
1 answer

SVProgressHUD how to delay for specified amount of time

I am using 3rd part UIActivityIndicator SVProgressHUD, I am initalising this when my view loads. I would like to delay the activityIndicator for about 1 second while a few things in my app happen. then call [SVProgressHUD dismiss]; based off that 1…
C.Johns
  • 10,185
  • 20
  • 102
  • 156
1
vote
1 answer

SVProgressHUD not animating when enter to foreground from Background

I'm facing the SVProgressHUD animation (hud animation not working. just showing the hud without spinning animation) issue when I enter the background and stay for 5 or more seconds and again enter into the foreground. Can anyone help me how to solve…
Ramakrishna
  • 712
  • 8
  • 26
1
vote
2 answers

Dispatchqueue and SVProgressHUD in swift

I have been designing an app that analyzes lines of text, and I want to use SVProgressHUD to show progress of it. This is my code: let total = text.count for line in text{ count = count + 1 DispatchQueue.global(pos: .background).async{ …
Mininny
  • 85
  • 6
1
vote
2 answers

UITextField and UIButton are not clickable

I am implementing simple UI for URL checking. For this, I used textField and button objects. When I run the program first time, textField and button will work fine but when I click on the done button on the keyboard then the keyboard is dismissed.…
Priyanka Patil
  • 318
  • 1
  • 9
1
vote
1 answer

Pressing a button more than once in Swift

When I press my button more than once in my app, it gives me an error in my AppDelegate. Thread 1: signal SIGABRT Here is my code for my button. If you have any questions, make sure to tell me! //import Firebase //import SVProgressHUD //import…
Claire Cho
  • 87
  • 1
  • 11
1
vote
4 answers

SVProgressHUD not displaying until UITableView is displayed

I am trying to use the SVProgressHUD to indicate that the app is busy. My code is now: SVProgressHUD.show() DispatchQueue.global(qos: .background).async { parser.parse() print("start reloading") …
1
vote
0 answers

Dismiss SVProgressHUD if exiting View Controller

I have a view controller that on launch shows an SVProgressHUD as data is fetched from the server. How would I dismiss the SVProgressHUD if moving back to the previous view controller before the fetch is completed? I have tried this: override func…
1
vote
1 answer

Show Activity Indicator(SVProgress HUD) after 3 seconds in iOS

I am using SVProgressHUD as an activity indicator in my project. I don't want to show HUD if my data loads faster than 3 seconds, it should show only after this time period. I am not able to delay the loading of SVProgress HUD.
jayant rawat
  • 318
  • 2
  • 12
1
vote
2 answers

SVProgressHud not showing in iOS 9 when app using Login with Facebook

I am using SVProgressHUD in my swift project as a framework. It is working fine in iOS 8. I have login with Facebook in my app. whenever i use the login SVProgressHUD doesn't show through out the app. But when i killed the app and launch…
1
vote
2 answers

SVProgressHUD doesnt show after showing another message

I'm trying to show a spinner with SVProgressHUD, and when i get a async response from a server, dismiss that hud and show another hud with the message recevied from the server. override func viewDidAppear(animated: Bool) { …
Godfather
  • 4,040
  • 6
  • 43
  • 70
1
vote
0 answers

Cocoapods podspec with dependencies issue

What I need is create a Pod that will have several other Pods (MBProgressHUD, SVProgressHUD) included in as a dependencies. So my goal is to have a MultiProgressHUD (so for example show different progress huds depending on configuration) I have…
1
vote
2 answers

iOS: SVProgressHUD doesnt dismiss when user moves from one screen to another in IOS Xcode

I have used SVProgressHUD for progresshud. I found that SVProgressHUD doesnt dismiss when user moves from one screen to another. Its tedious to call [SVProgressHUD dismiss]; in -(void)viewWillDisappear:(BOOL)animated of every class so i want to…
Nischal Hada
  • 3,230
  • 3
  • 27
  • 57
1
vote
1 answer

CocoaPods with SVProgressHUD - SVIndefiniteAnimatedView not downloaded

I'm using CocoaPods and SVProgressHUD but from time to time after doing: pod install All look good, but there are two files missing for SVProgressHUD: SVIndefiniteAnimatedView.h SVIndefiniteAnimatedView.m I look on Pods/SVProgressHUD and I find…
RGML
  • 3,429
  • 2
  • 22
  • 18
1
vote
1 answer

Showing a masked BTProgressHUD without blocking the tab bar?

Is it possible to show a BTProgressHUD with a mask without preventing interaction with the tab bar? In other words, can the mask on a BTProgressHUD be constrained to just the tab's currently shown view controller instead of the full…
patridge
  • 26,385
  • 18
  • 89
  • 135