Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在加载应用程序时更改段颜色的颜色。
或者是否可以根据 NavigationBar 标题/标题颜色更改段控件的颜色?
提供带有任何代码片段或任何有用链接的任何解决方案,我们将不胜感激。
这是在属性UISegmentedControl下的文档中tintColor,例如:
UISegmentedControl
tintColor
UISegmentedControl *segmentedControl; segmentedControl.tintColor = [UIColor redColor];
如果您愿意,可以使用以下-setTintColor:方法:
-setTintColor:
[segmentedControl setTintColor:[UIColor redColor]];