Swiftでナビゲーションバーの色を変更するTipsをご紹介します。
実行環境
* Xcode7.1.1
* OSX Yosemite バージョン10.10.5
AppDelegateで変更する場合
ナビゲーションバーのアイテムの色、背景色、タイトル文字色を変更したい場合は、AppDelegate.swiftの```
* application:didFinishLaunchingWithOptions:```
メソッドで以下のような指定をします。
//AppDelegate.swift
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
//ナビゲーションアイテムの色を変更
UINaviga