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]];