UINavigationBar Swift中的文本颜色
发布时间:2020-12-14 06:08:17 所属栏目:百科 来源:网络整理
导读:我如何去改变UINavigationBar在Swift中的颜色? 大多数在线的东西说做类似的事情: [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]}]; 我翻译成了 let titleDict: NSDictionary
我如何去改变UINavigationBar在Swift中的颜色?
大多数在线的东西说做类似的事情: [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]}]; 我翻译成了 let titleDict: NSDictionary = ["NSForegroundColorAttributeName": UIColor.whiteColor()] self.navigationController.navigationBartitleTextAttributes = titleDict //self is referring to a UIViewController 但它不工作。我已经改变了背景和按钮颜色,但文字颜色不会改变。有任何想法吗?
使用NSForegroundColorAttributeName作为键,而不是“NSForegroundColorAttributeName”字符串。
let titleDict: NSDictionary = [NSForegroundColorAttributeName: UIColor.whiteColor()] self.navigationController.navigationBar.titleTextAttributes = titleDict (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |