ボタンがクリックされると、エンドユーザーは電子メールを送信できます。ただし、ナビゲーションバーは消えず、メールのナビゲーションバーはメインバーの下に隠れています。メインのものを隠す方法はありますか?これは、ボタンが押されたときに呼び出されるアクションです。
-(void)goToEmail{
if([MFMailComposeViewController canSendMail]) {
MFMailComposeViewController *mailCont = [[MFMailComposeViewController alloc] init];
mailCont.mailComposeDelegate = self;
[mailCont setSubject:@"Hello!"];
[mailCont setToRecipients:[NSArray arrayWithObject:@"name@email.com"]];
[mailCont setMessageBody:@"Test" isHTML:NO];
[self.navigationController setNavigationBarHidden:YES];
[self presentModalViewController:mailCont animated:YES];
}
}