Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get global tint color from code

Is there a way I can get the global tint color from my project by code? To avoid a misunderstanding I mean the global tint color, which i can set in the File Inspector.

like image 765
fahu Avatar asked Sep 11 '25 08:09

fahu


1 Answers

In the app delegate you can set it by

UIColor *globalTint = [[[UIApplication sharedApplication] delegate] window].tintColor;
like image 149
Maximilian Litteral Avatar answered Sep 13 '25 11:09

Maximilian Litteral