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.
我正在尝试使用 Apple 的 ResearchKit 进行调查,但我找不到如何更改预定义按钮的颜色。它们是蓝色的,但我想让它们变成不同的颜色。这个怎么做?
使用UIView的外观代理设置色调颜色应该可以:
UIView
[UIView appearance].tintColor = yourColor;
现在已经很晚了,但可能会节省一些人的时间,为我工作:
taskviewcontrollerobject.view.tintColor = [UIColor redColor]; // 你选择的颜色