2014-02-13 1 views
4

나만이나 iOS에 있습니까? 7 모든 공유 응용 프로그램의 텍스트 색상을 변경할 수 있습니까? 예를 들어 Mail 또는 iMessage 앱을 여는 경우 색상이 기본 파란색으로 돌아가거나 변경하는 방법이 있습니까? 나는 할 수 없었다.UIActivityViewController가있는 글리치

다음은 몇 가지 스크린 샷입니다.

다음

enter image description here

이 예는 다음과 같습니다

여기

이 무엇 모습과 내가 그것을 MFMailComposerViewController에서 메일을 열 때 같이 할 수 있습니다 : UIActivityViewController 공유 응용 프로그램을 선택할 때 파란색 글꼴 색상을 주목하라 UIActivityViewController에서 메일 응용 프로그램을 선택할 때 :

enter image description here

내가 글꼴 색상을 변경하려는 이유는 B이다 특히 공유 응용 프로그램 인 iMessage에서 텍스트 글꼴을 읽는 것이 어렵습니다.

답변

-1
는 barbutton 항목의 색상을 변경

[[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]]; 

사용 setTintColor으로 탐색 바의 배경 색상을 변경

.

0

시도해 보셨습니까?

[[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil] setTintColor:[UIColor whiteColor]]; 

More Info