본문 바로가기

Development/IOS & Mac

[iOS] 기본 UI 색깔 변경하기

원래 iOS7의 기본 UI 색깔은 연한 파란색? 이다. 이것을 아래의 그림처럼 내가 정한 색깔로 바꾸고 싶다면...





바꾸고 싶은 Component의 tintColor를 바꿔준다.


  UIColor * tintColor = [UIColor colorWithRed:76.0/255.0 green:19.0/255.0 blue:136.0/255.0 alpha:1.0];

self.window.tintColor = tintColor;

[UIButton appearance].tintColor = tintColor;

[[UIButton appearance] setTitleColor:tintColor

forState:UIControlStateNormal];

[UISwitch appearance].tintColor = tintColor;

[UISwitch appearance].onTintColor = tintColor;

[UISegmentedControl appearance].tintColor = tintColor;