1

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?

Community
  • 1
  • 1
Adam Tindale
  • 1,239
  • 10
  • 26

1 Answers1

2

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.

Community
  • 1
  • 1
C4 - Travis
  • 4,502
  • 4
  • 31
  • 56