如何避免 UIToolbar TintColor 改变 UIButtonItem 按钮颜色?

发布于 2024-12-10 20:13:51 字数 128 浏览 2 评论 0原文

我已将蓝色 UIBarButtonItem 添加到应用程序中的 UIToolbar 中,并将工具栏的tintColor 更改为黑色。然而,按钮也变成了黑色。有什么办法可以避免这种情况吗?

感谢您的帮助,

斯蒂芬

I have added a blue UIBarButtonItem to a UIToolbar in my app and changed the tintColor of the toolbar to black. However, the button also turned to black. Any idea to avoid this ?

Thx for helping,

Stephane

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明月松间行 2024-12-17 20:13:51

尝试这样...

    self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
    UIBarButtonItem *signup = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"SIGN_UP",@"") style:UIBarButtonItemStyleDone target:self action:@selector(createAccountFun)];
    self.navigationItem.rightBarButtonItem =signup;

try like this...

    self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
    UIBarButtonItem *signup = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"SIGN_UP",@"") style:UIBarButtonItemStyleDone target:self action:@selector(createAccountFun)];
    self.navigationItem.rightBarButtonItem =signup;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文