Change title font color

This commit is contained in:
kevinzhow
2015-03-31 00:42:28 +08:00
parent 5a714c87c4
commit ef429379a4
@@ -74,6 +74,14 @@ class ProfileViewController: UIViewController {
self.navigationController?.navigationBar.barStyle = UIBarStyle.BlackTranslucent
self.navigationController?.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: UIBarMetrics.Default)
let textAttributes = [
NSForegroundColorAttributeName: UIColor.whiteColor(),
NSFontAttributeName: UIFont(name: "HelveticaNeue-CondensedBlack", size: 20)!
]
self.navigationController?.navigationBar.titleTextAttributes = textAttributes
NSNotificationCenter.defaultCenter().addObserver(self, selector: "changeProfileImage", name: YepChangeProfilePhotoNotification, object: nil)
}