Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active April 11, 2019 07:35
Show Gist options
  • Save KentarouKanno/08dd264d999cd1c39d6243af2f01b7b0 to your computer and use it in GitHub Desktop.
Save KentarouKanno/08dd264d999cd1c39d6243af2f01b7b0 to your computer and use it in GitHub Desktop.
  • ナビゲーションのタイトルを設定する
/* Set Navigation Title */
extension UIViewController {

    func setNavigationTitle(_ attributedText: NSAttributedString) {
        let label = UILabel(frame: .zero)
        label.attributedText = attributedText
        navigationItem.titleView = label
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment