iPhone アプリで色付きのナビゲーション バーと色付きのグローバル UIToolbar を使用しています。私の情報ビューには、MFMailComposeViewController を開くボタンがあり、そのビューの上部にあるツールバー (「キャンセル」と「送信」ボタンを含む) はまだ青色です。次のように MFMailComposeViewController を呼び出しています。
-(void)displayMailSheet
{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"..."];
NSArray *toRecipients = [NSArray arrayWithObject:@"..."];
[picker setToRecipients:toRecipients];
[self presentModalViewController:picker animated:YES];
[picker release];
}
そのビューのツールバーの色を変更することはできますか? 可能であれば、どうすればこれを行うことができますか?