I'm using this code [[UIApplication sharedApplication] setStatusBarHidden:YES]; in viewDidLoad and nothing else, to hide the status bar in my modal view. But when I come back to the previous view with [self dismissViewControllerAnimated:YES completion:nil]; the status bar is hidden in all the views. Of course I don't want this behavior. I understand that this is a simple question and might be a possible duplicate.
Anyway, thanks in advance!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
Remember that |
|||
|
|
viewWillDisappearor somewhere else to put it back when you leave that view. – Dima Jul 20 '12 at 16:22