【iOS】ナビゲーションバーのタイトルのフォントとサイズをコードで変更する【Swift3.0】
// フォント種をTime New Roman、サイズを10に指定
self.navigationController?.navigationBar.titleTextAttributes
= [NSFontAttributeName: UIFont(name: "Times New Roman", size: 15)!]
テストコード
ViewController.swift
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
// タイトルをセット
self.navigationItem.title = "title font test"
// フォント種をTime New Roman、サイズを10に指定
self.navigationController?.navigationBar.titleTextAttributes
= [NSFontAttributeName: UIFont(name: "Times New Roman", size: 15)!]
}
}
Author And Source
この問題について(【iOS】ナビゲーションバーのタイトルのフォントとサイズをコードで変更する【Swift3.0】), 我々は、より多くの情報をここで見つけました https://qiita.com/fromage-blanc/items/29335b3f401136e2993e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .