如何在 iPhone 的 UISegmented Control 中创建纯色背景

发布于 2024-09-09 15:51:44 字数 585 浏览 2 评论 0原文

我创建了滚动视图并将分段控件设置为子视图。如果我滚动这些段,它会水平移动。我已经设置,

 segmentedControl.segmentedControlStyle = UISegmentedControlStylePlain;

我得到这样的输出,

Image-1 http://www.freeimagehosting。 net/uploads/3d98eda2bd.png

但我想要纯背景与这样的片段, 图片 2 http://www.freeimagehosting.net/uploads/efe195f809.png

那么是否可以创建具有纯背景的片段。请指导我,如果不可能,请给我一些替代建议。

提前致谢。

普加尔

I have created scroll view and set the Segmented control as subview. If i scroll the segments and it moves horizontally. I have set,

 segmentedControl.segmentedControlStyle = UISegmentedControlStylePlain;

I got an output like this,

Image-1 http://www.freeimagehosting.net/uploads/3d98eda2bd.png

But i want to plain background with the segments like this,
Image-2 http://www.freeimagehosting.net/uploads/efe195f809.png

So is it possible to create a segments with plain background. Please guide me and if it is not possible please give me some alternate suggestions.

Thanks in Advance.

Pugal

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

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

发布评论

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

评论(1

爱,才寂寞 2024-09-16 15:51:44
UISegmentedControl *segment = [[UISegmentedControl alloc] initWithItems:[NSArray
                                   arrayWithArray:temp]];

[segment setFrame:CGRectMake(0, 0, width, 30.0)];

[segment setSegmentedControlStyle: UISegmentedControlStyleBar];

[segment setTintColor:[UIColor redColor]];

[segment setSelectedSegmentIndex:0];

如果您设置 TintColor ,您的 UISegmentedControl 样式必须为“UISegmentedControlStyleBar”
其他风格不行!

UISegmentedControl *segment = [[UISegmentedControl alloc] initWithItems:[NSArray
                                   arrayWithArray:temp]];

[segment setFrame:CGRectMake(0, 0, width, 30.0)];

[segment setSegmentedControlStyle: UISegmentedControlStyleBar];

[segment setTintColor:[UIColor redColor]];

[segment setSelectedSegmentIndex:0];

if you set TintColor , your UISegmentedControl style have to be "UISegmentedControlStyleBar"
other style will be not work!

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