내가 시도한 것처럼 보이지만 사용자가 링크를 이메일로 보내기로 선택할 때 나타나는 이메일 화면 (버튼 번호는 MFMailComposeViewController
)은 항상 기본 파란색으로 표시됩니다.기본 파란색에서 MFMailComposeViewController에 대한 UIBarButtonItems의 색상을 어떻게 지정합니까?
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:0.000 green:156/255.0 blue:51/255.0 alpha:1]];
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
[[UINavigationBar appearance] setTitleTextAttributes:@{ NSForegroundColorAttributeName: [UIColor whiteColor] }];
을 그리고 그것은 참으로 MFMailComposeViewController
아니라 버튼의 제목 색상 않습니다
내 AppDelegate에이 있습니다. 어떻게해야합니까?
다른 모든 곳에서 흰색으로 표시되면 상태 표시 줄도 검은 색으로 유지됩니다.
중복 가능성 http://stackoverflow.com/questions/19333855/change-navigation-button-color-in-mfmailcomposerviewcontroller-on-ios-7) – dlinsin