問題:モーダル ビューとして表示して閉じるnavigationBar
と、ステータス バーが一番上に表示されます。MFMailComposerViewController
-(IBAction)openMail:(id)sender
{
MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
mc.mailComposeDelegate = self;
[mc setSubject:emailTitle];
[mc setMessageBody:messageBody isHTML:YES];
[mc setToRecipients:toRecipents];
[mc.navigationItem.leftBarButtonItem setTintColor:[UIColor colorWithRed:144/255.0f green:5/255.0f blue:5/255.0f alpha:1.0f]];
[self presentViewController:mc animated:YES completion:NULL];
}
- (void) mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
{
switch (result)
{
case MFMailComposeResultCancelled:
NSLog(@"Mail cancelled");
break;
case MFMailComposeResultSaved:
NSLog(@"Mail saved");
break;
case MFMailComposeResultSent:
NSLog(@"Mail sent");
break;
case MFMailComposeResultFailed:
NSLog(@"Mail sent failure: %@", [error localizedDescription]);
break;
default:
break;
}
// Reset background image for navigation bars
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navigationBar.png"] forBarMetrics:UIBarMetricsDefault];
NSLog(@"%@",[GGStackPanel printFrameParams:self.view]);
// Close the Mail Interface
GGAppDelegate * appDel = [[UIApplication sharedApplication] delegate];
HHTabListController * contr = (HHTabListController*)appDel.viewController;
[contr setWantsFullScreenLayout:NO];
NSLog(@"%i",[contr wantsFullScreenLayout]);
[self dismissViewControllerAnimated:YES completion:NULL];
}
Stackoverflow にも同様の質問がいくつかありますが、提案されている解決策はどれも私にとってはうまくいきません。私はすでに試しました:
モーダルビューを閉じた後のステータスバーとナビゲーションバーの問題
http://developer.appcelerator.com/question/120577/nav-bar-appears-underneath-status-bar
AppDelegate から提示して却下しようとしましたが、助けにはなりませんでした。
ビュー フレームまたはナビゲーション バー フレームの変更は機能しますが、アプリ内の他のすべてのビューに対して同じことを行う必要があります (多くのビューがあります)。これにより、アプリ全体がこの小さなバグに依存するようになります。
スクリーンショット
MailComposer を閉じた後: