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

iOS: SVProgressHUD not displayed correctly

I have called SVProgressHUD on viewDidLoad as follows: [SVProgressHUD showWithStatus:@"Loading"]; [NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) { if ([data…
z22
  • 10,013
  • 17
  • 70
  • 126
0
votes
3 answers

AdColony + SVProgressHUD Conflict

I'm experiencing some odd behavior when integrating AdColony's 2.2.4 library with an application using SVProgressHUD. If the standard configuration call is made in the app delegate... [AdColony configureWithAppID:kAdColonyAppID…
Logan
  • 3
  • 1
0
votes
1 answer

SVProgressHUD background around loading is missing ios7

Since I upgraded to iOS 7 the background of the loading box is no longer showing. See screenshot: I added the library using Cocoapods and am on version 1.0 My .m file has the following: - (void)viewDidLoad{ [super viewDidLoad]; …
Mike Silvis
  • 1,299
  • 2
  • 17
  • 30
0
votes
1 answer

svprogresshud not showing in xcode5 ios7

I am trying to use SVProgressHUD with cocoapods. I have install it in my xcode workspace following numerous tutorials online. It seems simple enough to use, but I cannot get it to work. Here my code to load data from rottentomatoes app. I want to…
U-L
  • 2,671
  • 8
  • 35
  • 50
0
votes
1 answer

Method code not executing in the correct order

I have two methods. One method is used to load my SVProgressHUD, the second method is used to get data from my coreData and sort it then present it in a new UITableView. The user selects are UITableViewCell which…
HurkNburkS
  • 5,492
  • 19
  • 100
  • 183
0
votes
2 answers

Performance Issues with SVProgressHUD

I have a section of code that is producing pour performance and not working as expected. it utilizes the SVProgressHUD from the following github repository at https://github.com/samvermette/SVProgressHUD. I have an area of code where I need to use…
ScottOBot
  • 839
  • 3
  • 16
  • 37
0
votes
1 answer

iOS-Xcode: ProgressHUD at the beginning of the app

First of all sorry about my english, it´s not my native language. I am developing an iOS app that collects data from a JSON and displays them in a table. Everything works correctly . My problem is that JSON has many data and the app takes several…
Luis RG
  • 13
  • 4
0
votes
4 answers

SVProgressHud disappear after few seconds

I have added SVProgressHud in my app and work really greats in most of all viewController. But its behave strangely in first child of navigation controller when i present the SVProgressHud it will displayed but after few seconds it will disappear…
Dilip Manek
  • 9,095
  • 5
  • 44
  • 56
0
votes
1 answer

How to apply SVProgressHUD in a UIWebView?

I have this code, but doesn't work and i don't know why? - (void)webViewDidStartLoad:(UIWebView *)web { [SVProgressHUD showWithStatus:@"Loading..."]; } - (void)webViewDidFinishLoad:(UIWebView *)web { [SVProgressHUD dismiss]; }
Oscar
  • 13
  • 5
-1
votes
1 answer

Change SVProgressHUD's ring and text to different color

I'm using SVProgressHUD in my Swift project and I want different color's for the ring and text. If I'm changing using: SVProgressHUD.setForegroundColor(UIColor.blue) than all the hud's and text of SVProgressHUD changes to blue. Is there any way i…
Rohitax Rajguru
  • 893
  • 2
  • 13
  • 35
-2
votes
2 answers

Why SVProgressHUD throwing eorrr?

I am trying to integrate the SVProgressHUD library and want to show before the API response on my controller for that I have written a code but it's throwing an error like Thread 1: "-[MYOWEB.AppDelegate window]: unrecognized selector sent to…
-2
votes
2 answers

Is there a SVProgressHUD or KVNProgress kind of library in Swift?

I want to show a similar kind of progress hud as above two but it should be written in Swift only. Can anyone provide some link to similar library?
user7070130
-2
votes
2 answers

SVProgressHUD issues in swift 3

Facing very rare issue in SVProgressHUD in Swift 3 Check the pod file i didn't do any thing wrong as mentioned on the SVProgressHUD on github.
Mohammad Kalim
  • 33
  • 1
  • 2
  • 6
1 2 3 4
5