首页 > 学院 > 开发设计 > 正文

Swift设置navigationbar属性相关

2019-11-14 19:34:08
字体:
来源:转载
供稿:网友
1 //设置导航栏颜色2 let mainColor = UIColor(red: 0.92, green: 0.25, blue: 0.24, alpha: 1)3 self.navigationController?.navigationBar.barTintColor = mainColor4 self.navigationController?.navigationBar.tintColor =UIColor.whiteColor()5 6 //设置标题颜色7 let navigationTitleAttribute : NSDictionary = NSDictionary(objectsAndKeys: UIColor.whiteColor(),NSForegroundColorAttributeName)8 self.navigationController?.navigationBar.titleTextAttributes = navigationTitleAttribute

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表