gpt4 book ai didi

objective-c - 如何更改 Storyboard 上的 NavigationController.title.font?

转载 作者:搜寻专家 更新时间:2023-10-30 20:24:37 26 4
gpt4 key购买 nike

现在,我使用 storyboard 来设置 UI。它是 storyboard 中的一个 UITableViewControllerUITableViewControllerUINavigationControllerrootViewController。现在,我设置了 NavigationController 的标题,但是标题太小了。我想更改标题的字体和标题的颜色。在StoryBoard 中我应该怎么做。 顺便说一下,如果它不能在storyBoard 中执行。我可以使用代码吗??

最佳答案

使用 StoryBoard 见下图

enter image description here

使用代码

在didload View 中添加代码

 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]];

关于objective-c - 如何更改 Storyboard 上的 NavigationController.title.font?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34283658/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com