Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active May 26, 2018 03:18
Show Gist options
  • Save KentarouKanno/56d338023ee4e6c9ddf5d6eb599010c1 to your computer and use it in GitHub Desktop.
Save KentarouKanno/56d338023ee4e6c9ddf5d6eb599010c1 to your computer and use it in GitHub Desktop.
UINavigationBar

UINavigationBar

★ タイトルフォントを変更する

navigationController?.navigationBar.titleTextAttributes = [NSFontAttributeName: UIFont(name: "Times New Roman", size: 5)!]

★ LargeTitleの設定

if #available(iOS 11.0, *) {
    // ここで Large Title が有効になります
    self.navigationController?.navigationBar.prefersLargeTitles = true
}

if #available(iOS 11.0, *) {
    // このViewControllerでの設定
    self.navigationItem.largeTitleDisplayMode = .always
}
public enum LargeTitleDisplayMode : Int {
    case automatic
    case always
    case never
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment