现在,我使用storyboard
来设置用户界面。它是UITableViewController
中的storyboard
。 UITableViewController
是rootViewController
的{{1}}。现在,我设置了UINavigationController
的标题,但标题太小了。我想更改标题的字体和标题的颜色。我该怎么做NavigationController
。
顺便说一下,如果它不能在StoryBoard
中完成。我可以使用代码吗?
答案 0 :(得分:1)
使用StoryBoard,请参阅以下图片
使用代码
在view didload中添加代码
NSShadow *shadow = [NSShadow new];
[shadow setShadowColor: [UIColor clearColor]];
[shadow setShadowOffset: CGSizeMake(0.0f, 1.0f)];
[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
[UIFont fontWithName:@"TimeBurner" size:27.0f], NSFontAttributeName,
[UIColor whiteColor], NSForegroundColorAttributeName,
shadow, NSShadowAttributeName,nil]];