원래 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;
'Development > IOS & Mac' 카테고리의 다른 글
[iOS] facebook iOS 단말기에 있는 유저 정보 가져오기 (0) | 2014.02.26 |
---|---|
[iOS] performselector may cause a leak because its selector is unknown (0) | 2014.02.24 |
[IOS Library] List Dialog (0) | 2014.02.20 |
[iOS] iOS 증명서 만들기 (0) | 2014.02.17 |
[iOS] facebook 로그인 연동하기~! (2) (0) | 2014.02.04 |