Status bar won’t disappear

Try adding the following method to your app’s root view controller:

- (BOOL)prefersStatusBarHidden
{
    return YES;
}

Leave a Comment