UIToolBar:如何设置自定义文本/背景颜色

发布于 2024-10-23 16:02:11 字数 353 浏览 3 评论 0原文

可能的重复:
我可以为 UIToolBar 提供自定义背景吗在我的 iPhone 应用程序中?

大家好,

我正在开发一个带有自定义工具栏的 iOS 项目。我遇到以下问题: 在设备上运行时,图标的颜色值将被忽略。文本始终是白色的(所以我认为只使用灰度值)。你们有人知道如何解决这个问题吗?

提前谢谢。

Possible Duplicate:
Can I give a UIToolBar a custom background in my iPhone app?

Hi everybody,

I'm working on a iOS project with a custom Toolbar. I'm having the following problem:
The color values for the icons are simply ignored during run time on he device. The text is always white (so i think only the grayscale value is used). Does anyone of you know how to solve the problem?

thx in advance.

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

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

发布评论

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

评论(1

我的黑色迷你裙 2024-10-30 16:02:11

您可以自定义 UIToolBar。


UIImage *myImage = [UIImage imageNamed:@"ToolBar_background.png"];
UIImageView *anImageView = [[UIImageView alloc] initWithImage:myImage];
[aToolBar insertSubview:anImageView atIndex:0];
[anImageView release];

创建 UIButton


UIButton *myButton = [UIButton buttonWithType:UIButtonTypeCustom];
[myButton setImage:[UIImage imageNamed:@"buttonImage.png"] forState:UIControlStateNormal];
[myButton setFrame:CGRectMake(x,y,width,height)];[myButton addTarget:self action:@selector(myMethod) forControlEvents:UIControlEventTouchUpInside];

将按钮添加到工具栏。


[aToolBar addSubview:myButton];

试试这个。

You can customize UIToolBar.


UIImage *myImage = [UIImage imageNamed:@"ToolBar_background.png"];
UIImageView *anImageView = [[UIImageView alloc] initWithImage:myImage];
[aToolBar insertSubview:anImageView atIndex:0];
[anImageView release];

Create UIButton


UIButton *myButton = [UIButton buttonWithType:UIButtonTypeCustom];
[myButton setImage:[UIImage imageNamed:@"buttonImage.png"] forState:UIControlStateNormal];
[myButton setFrame:CGRectMake(x,y,width,height)];[myButton addTarget:self action:@selector(myMethod) forControlEvents:UIControlEventTouchUpInside];

Add your button to the toolbar.


[aToolBar addSubview:myButton];

Try this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文