LoginSignup
16
16

More than 5 years have passed since last update.

iOS 7 でステータスバーを隠す方法

Posted at

UIViewControllerで以下のメソッドを定義。
デフォルトではNOが返っているらしいので、YESを返すと隠れる。

- (BOOL)prefersStatusBarHidden
{
    return YES;
}

※ iOS 5.0 〜 6.1も一応確認しましたがこちらのメソッド定義しても影響なさそう

16
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
16