设置导航条上文本内容的属性

宓季同
2023-12-01

当想定制导航条上的标题时,可以通过设置导航条的titleTextAttributes 属性 如:设置导航条上的文本颜色

  self.navigationController.navigationBar.titleTextAttributes = [ NSDictionary dictionaryWithObjectsAndKeys:[ UIColor WhiteColor ], UITextAttributeTextColor,nil ];

其中,不只有UITextAttributeTextColor,

           还有 UITextAttributeFont    字体大小

                    UITextAttributeTextShadowColor   阴影颜色

                    UITextAttributeTextShadowOffset    阴影偏移量

 类似资料: