從這段代碼將顯示在原來的顏色我怎麼能改變它到另一種顏色? 也許它需要重寫?如何自定義MFMailComposeViewController的導航欄顏色?
MFMailComposeViewController *mail = [[MFMailComposeViewController alloc] init];
mail.mailComposeDelegate = self;
if ([MFMailComposeViewController canSendMail]) {
[mail setToRecipients:[NSArray arrayWithObjects:@"[email protected]",nil]];
[mail setSubject:@"support"];
[mail setMessageBody:@"enter your message here" isHTML:NO];
[self presentModalViewController:mail animated:YES];
}
我明白了,謝謝您Giao – RAGOpoR 2010-03-08 09:20:44
您在使用這種方法時一定要小心。提交給App Store時,蘋果公司對拒絕按鈕感到滿意。如果您修改了標準iPhone界面(即郵件compoase界面),Apple可能會拒絕您的應用程序。提供的用戶界面不打算修改... – Jasarien 2010-03-08 10:31:43