操作root view controller
//设置导航栏背景颜色
let bgColor = UIColor(red: x/255, green:y/225, blue: z/255, alpha: 1)
self.navigationController?.navigationBar.barTintColor = bgColor
//设置标题及其颜色
self.navigationItem.title = "your title"
let navigationTitleAttribute: NSDictionary = NSDictionary(objectsAndKeys: UIColor.yourcolor, NSForegroundColorAttributeName)
self.navigationController?.navigationBar.titleTextAttributes = navigationTitleAttribute as [NSObject: AnyObject]