如何在加载 iPhone 应用程序时更改段控件颜色?

发布于 2024-08-05 08:38:48 字数 104 浏览 4 评论 0原文

我想在加载应用程序时更改段颜色的颜色。

或者是否可以根据导航栏标题/标题颜色更改段控件的颜色?

提供带有任何代码片段或任何有用链接的任何解决方案,我们将不胜感激。

i want to change the color of the segment color while loading the application.

or is it possible to change the color of the segmentcontrol according to the NavigationBar header/title color?

Provide any solution with any code snippet or any useful link,which would be appreciated.

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

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

发布评论

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

评论(1

江挽川 2024-08-12 08:38:48

这是在 UISegmentedControl 的文档中的 tintColor 属性下,例如:

UISegmentedControl *segmentedControl;
segmentedControl.tintColor = [UIColor redColor];

如果您愿意,可以使用 -setTintColor: 方法:

[segmentedControl setTintColor:[UIColor redColor]];

This is in the documentation for UISegmentedControl under the tintColor property, e.g.:

UISegmentedControl *segmentedControl;
segmentedControl.tintColor = [UIColor redColor];

If you prefer, you can use the -setTintColor: method:

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