문제

Since iOS7 I have had a hard time hiding the status bar in apps. I've tried most of the tricks in another thread on SO and I am still unable to hide the status bar. How might I do this in C4?

도움이 되었습니까?

해결책

As per that question, there's a trick listed as one of the answers that states:

- (BOOL)prefersStatusBarHidden {
    return YES;
}

You'll want to add this to your workspace.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top