Skip to content

Instantly share code, notes, and snippets.

@taji-taji
Created December 6, 2015 10:08
Show Gist options
  • Save taji-taji/6995f03c4335618e1e83 to your computer and use it in GitHub Desktop.
Save taji-taji/6995f03c4335618e1e83 to your computer and use it in GitHub Desktop.
【Swift】特定のカスタムViewController内でステータスバーを隠す設定を書く【メモ】 ref: http://qiita.com/taji-taji/items/13aaf4a8cebb3b6e48d2
class MyCustomViewController: UIViewController {
// ~略~
override func prefersStatusBarHidden() -> Bool {
return true
}
// ~略~
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment