0

Since I upgraded to iOS 7 the background of the loading box is no longer showing. See screenshot:enter image description here

I added the library using Cocoapods and am on version 1.0

My .m file has the following:

- (void)viewDidLoad{
    [super viewDidLoad];
    [SVProgressHUD showWithStatus:@"Logging in..." maskType: SVProgressHUDMaskTypeBlack];
}
Mike Silvis
  • 1,299
  • 2
  • 17
  • 30

1 Answers1

0

I got the same problem and it's possibly a bug.

Just change your pod version to

pod 'SVProgressHUD', '~> 0.9'

That should fix the problem

adiman
  • 522
  • 9
  • 18