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
8
votes
3 answers

How to show/hide the progressHUD, with MVVM and RxSwift in swift

I'm beginning with MVVM in order to well separate logic code from the view. But I have some concern about where to put the progressHUD related code when tapping a button that makes a request. Before, I used to do that: //Before @IBAction func…
user3620372
  • 187
  • 1
  • 9
7
votes
2 answers

SVProgressHUD not showing at centre of screen?

I have 2 projects, both are developed in iOS 13, in one of the project SVProgressHUD works fine, i.e. shows correctly on the screen in the centre, but on the other app, it shows at the top left corner of the screen. I had searched and found that…
Amais Sheikh
  • 421
  • 5
  • 12
5
votes
1 answer

SVProgressHud Ring/Foreground Color IOS

I now this issue posted more times but i have not fix my issue. In my case foregroundColor is not working. Ring is not appear with darkGray color even that foregroundColor not pick any color. Please View my code and help me. Thanks import…
Jon Striker
  • 267
  • 3
  • 19
5
votes
0 answers

How to add third-party framework like SVProgressHUD into theos project

I would like to use SVProgressHUD (no matter .a or .framework) in my theos reverse engineering Project. I tried to put headers in /opt/theos/inlcude and put .framework file in /op/theos/lib and add EXTRA_FRAMEWORK += SVProgressHUD in makefile…
user5594175
4
votes
5 answers

Disabling user interaction not working in SVProgressHUD on iOS app

I've just downloaded SVProgressHUD and incorporated it into my project as explained in the github documentation page, but even if I wrote out [SVProgressHUD showWithMaskType:SVProgressHUDMaskTypeGradient];, it's not different from the default mask…
Blaszard
  • 30,954
  • 51
  • 153
  • 233
3
votes
1 answer

iOS: SVProgressHUD not displaying in centre when i use setContainerView

I am using SVProgressHUD for loader. When i use setContainerView method the loader is not displaying in centre. Can any one help me out. Used below code to show Loader + (void)showLoadingHUDForView:(UIView *)view { if (view != nil) { …
Anjaneyulu Battula
  • 1,910
  • 16
  • 33
3
votes
2 answers

SVProgressHUD - Showing / Hiding the control quickly causes it to not come up the next time showWithStatus is called

I have some source code below which will reproduce this. Calling showWithStatus and dismiss before the HUD has a chance to present itself is causing the control to not show the next time showWithStatus is called. Does anyone know any workarounds? //…
Tejaswi Yerukalapudi
  • 8,987
  • 12
  • 60
  • 101
3
votes
2 answers

Perform call to server in viewDidLoad

I'm pretty new on iOS development and I'm having the following problem. I need to fill a UITableView with data fetched from a server. I'm doing this call using AFNetworking. I want to show a "loading view" using SVProgressHUD and I'm doing the…
3
votes
1 answer

SVProgressHUD displays in background for Modal View

I have an UIViewController from which I am presenting a modal view. [self presentViewController:modal animated:YES completion:nil]; It has two UIBarButtonItems (named Cancel and Save). I am performing some action on Save button tap. I am displaying…
Bhavin
  • 27,155
  • 11
  • 55
  • 94
2
votes
1 answer

Who is responsible for showing the SVProgressHud when show method called?

anywhere we can call SVProgress.show() to show the progress but specifically from where the progress presented ? who is responsible to display it? is the root view controller?
mojtaba al moussawi
  • 1,360
  • 1
  • 13
  • 21
2
votes
3 answers

How can I test the text that SVProgressHud displays?

I'm doing UI testing in Swift and the app I'm testing shows many update/progress messages using the pod SVProgressHud. I want to be able to verify whether the correct message is being displayed. How can I capture the SVProgress HUD and get its text?
Coder95
  • 159
  • 2
  • 13
2
votes
1 answer

SVProgressHUD isn't showing when using setContainerView

I'm having an issue with the setContainerView, the progress is not showing at all when I assign it to a custom view. I've tried everything with my UIView which is perfectly fine, but the progress remains invisible. I've used it for a while now and…
Skaal
  • 1,224
  • 12
  • 10
2
votes
1 answer

How to change ring and text color by using SVProgressHUDStyleCustom

I want to show both Ring and Text color of Hud differently.I'm using hud style SVProgressHUDStyleCustom, but unable to achieve the desired result. My code is following: [SVProgressHUD setDefaultStyle:SVProgressHUDStyleCustom]; [SVProgressHUD…
Irfan
  • 4,301
  • 6
  • 29
  • 46
2
votes
5 answers

Dismiss SVProgressHUD with Tap Gesture

I need to add a UITapGestureRecognizer to the SVProgressHUD. The SVProgressHUD already has the ability to dismiss using -(void) dismiss;. The code for this will dismiss the animation based on seconds. - (void)dismiss { for (UIGestureRecognizer…
MyloTut
  • 31
  • 1
  • 2
2
votes
0 answers

Is the method beginIgnoringInteractionEvents supposed to disable non-touch events?

I have a text box that is used to look up from a large list of potential options via a web service and then list them in a table view. On start/complete I call them + (void)showProgressHUDIfNecessary { if ([RestKitWebServiceRequest…
tacos_tacos_tacos
  • 10,277
  • 11
  • 73
  • 126
1
2 3 4 5