gpt4 book ai didi

iphone - 如何更改导航栏上 UIBarButtonItem 的字体颜色/文本颜色

转载 作者:IT王子 更新时间:2023-10-29 07:54:49 24 4
gpt4 key购买 nike

我按如下方式在导航栏中添加了一个栏按钮

UIBarButtonItem *cancel = [[UIBarButtonItem alloc] initWithTitle:@"CANCEL" style:UIBarButtonItemStyleBordered target:self action:@selector(goToPreviousView)];
self.navigationItem.leftBarButtonItem = cancel;

现在我想用红色显示文本“CANCEL”

我的意思是我需要更改栏按钮项上的文本,但不是按钮的色调。

怎么做?

最佳答案

检查一下:-

  UIBarButtonItem *cancel = [[UIBarButtonItem alloc] initWithTitle:@"Title" style:UIBarButtonItemStyleBordered target:nil action:nil];
[cancel setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: [UIColor redColor], UITextAttributeTextColor,nil] forState:UIControlStateNormal];

关于iphone - 如何更改导航栏上 UIBarButtonItem 的字体颜色/文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12295352/

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