Questions tagged [kvnprogress]

4 questions
1
vote
0 answers

KVNProgress not working under UIPageViewController

Here is my code under viewDidLoad method of a single ViewController as a child of my PageViewController. - (void)viewDidLoad { [super viewDidLoad]; [KVNProgress showWithStatus:@"Loading"]; // Not shown on child vc, see attached screen…
Sajib Ghosh
  • 410
  • 1
  • 6
  • 17
0
votes
1 answer

XCode 9 failed to build : Dyld error message Image not found

On XCode 9, I'm not able to build my project, with this error : KVNProgress…
Florian Mac Langlade
  • 1,863
  • 7
  • 28
  • 57
0
votes
1 answer

Issues related to calling UIKit methods from non-main thread

I implemented login method in this way: [KVNProgress show]; dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ //some error handling like: if ([_usernameField.text length] < 4) { …
-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