I'm having trouble hiding the status bar with my CardIOPaymentViewController. None of my other views display the status bar. I'm using the Card.io SDK in iOS7 and it presents fine modally - just that the status bar is always shown with this view. My info.plist has:
Status bar is initially hidden = YES
View controller-based status bar appearance = NO
and I've checked the Hide During Application Launch option in the Deployment Info Section.
I've tried:
self.keepStatusBarStyle = YES;
I've also made sure my CardIOPaymentViewController controller has (which I didn't need for my other view controllers):
-(BOOL)prefersStatusBarHidden {
return YES;
}
Any suggestions or similar experiences?