Xcodeを更新して以来、titleTextAttribute
を変更できないようです。今、次のコードを使用すると、このエラーが発生します:
この提供された引数を受け入れるオーバーロードinitが見つかりませんでした
appDelegate
のコード:
UINavigationBar.appearance().titleTextAttributes = [NSFontAttributeName: UIFont(name: "Ubuntu", size: 17), NSForegroundColorAttributeName:UIColor.whiteColor()]
UIBarButtonItem.appearance().setTitleTextAttributes([NSFontAttributeName: UIFont(name: "Ubuntu-Light", size: 15), NSForegroundColorAttributeName:UIColor.whiteColor()], forState: UIControlState.Normal)
UIFont(name:size:)
がオプションのUIFont
インスタンスを返すように、最近の変更がありました。動作させるには、それらをアンラップする必要があります。 !
を使用するのが最も簡単な方法ですが、フォントがシステム上にない場合はクラッシュします。次のようなものを試してください:
let navbarFont = UIFont(name: "Ubuntu", size: 17) ?? UIFont.systemFontOfSize(17)
let barbuttonFont = UIFont(name: "Ubuntu-Light", size: 15) ?? UIFont.systemFontOfSize(15)
UINavigationBar.appearance().titleTextAttributes = [NSFontAttributeName: navbarFont, NSForegroundColorAttributeName:UIColor.whiteColor()]
UIBarButtonItem.appearance().setTitleTextAttributes([NSFontAttributeName: barbuttonFont, NSForegroundColorAttributeName:UIColor.whiteColor()], forState: UIControlState.Normal)
スウィフト4:
UIBarButtonItem.appearance().setTitleTextAttributes([NSAttributedStringKey.foregroundColor: UIColor.white], for: .normal)
UINavigationBar.appearance().titleTextAttributes = [
NSAttributedStringKey.foregroundColor: UIColor.white
]
Swift 3の場合、以下を試すことができます。
UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName: UIColor.white]
スウィフト4:
if let navFont = UIFont(name: "Futura", size: 18) {
let navBarAttributesDictionary: [NSAttributedStringKey: Any] = [
NSAttributedStringKey(rawValue: NSAttributedStringKey.foregroundColor.rawValue): UIColor(netHex: Colors.BabyBlue.rawValue),
NSAttributedStringKey(rawValue: NSAttributedStringKey.font.rawValue): navFont ]
UINavigationBar.appearance().titleTextAttributes = navBarAttributesDictionary
}
if let navFont = UIFont(name: "HelveticaNeue-Bold", size: 30.0) {
let navBarAttributesDictionary: [NSObject: AnyObject]? = [
NSForegroundColorAttributeName: UIColor.blackColor(),
NSFontAttributeName: navFont
]
navigationController?.navigationBar.titleTextAttributes = navBarAttributesDictionary
}