gpt4 book ai didi

ios - 在 MailComposer 关闭后,StatusBar 位于 navigationBar 之上

转载 作者:可可西里 更新时间:2023-11-01 05:45:26 26 4
gpt4 key购买 nike

问题:在我将 MFMailComposerViewController 作为模态视图呈现和取消后,我的状态栏出现在 navigationBar 的顶部。

-(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 上有几个类似的问题,但没有一个建议的解决方案适合我。我已经试过了:

status bar and Navigation bar problem after dismissed modal view

http://developer.appcelerator.com/question/120577/nav-bar-appears-underneath-status-bar

我尝试在 AppDelegate 中展示和解散,没有帮助。

更改 View 框架或 navigationBar 框架可行,但我必须对应用程序中的所有其他 View 执行相同的操作(其中有很多)。这将使我的整个应用程序都依赖于这个小错误。

截图

View before presenting

关闭 MailComposer 后:

View after dismissing

最佳答案

wantsFullScreenLayout 是一些复杂且无关的东西。所有 View Controller 都需要嵌入到“布局” View Controller (Apples UINavigationController,Apple 的 UITabBarController)中,或者完全实现“我应该有多大,我应该放在哪里?”的复杂逻辑。他们自己。

Apple 决定在 iOS 1.0 中,您看到的 iPhone 主视图不会从 0,0 开始。包含它的窗口从 (0,0) 开始,但它被状态栏覆盖。

我认为这是他们后悔的决定,在当时是有道理的,但从长远来看,它造成了很多错误。

净效果是:

  1. UINavigationController 和 UITabBarController 具有特殊的(未记录的)内部代码,使其看起来好像 (0,0) 是左上角 - 它们强制调整大小/重新定位您添加到它们的任何 UIViewController
  2. ...如果您不使用其中一个作为您的主 Controller ,您必须自己重新实现该逻辑。如果您使用的是第 3 方 UIViewController 实例,则逻辑通常实现不正确或缺失。
  3. ...您可以在运行时通过重新定位 UIViewController.view(其 Root View )自行修复此问题,例如通过这个:

(代码)

UIViewController* rootController = // in this case HHTabController?
UIView* rootView = rootController.view;
CGRect frame = rootView.frame;
CGPoint oldOrigin = frame.origin;
CGPoint newOrigin = // calculate this, according to Apple docs.
// in your current case, it should be: CGPointMake( 0, 20 );
frame.origin = newOrigin;
frame.size = CGSizeMake( frame.size.width - (newOrigin.x - oldOrigin.x), frame.size.height - (newOrigin.y - oldOrigin.y) );
rootView.frame = frame;

...显然,每次都必须这样做很烦人。这就是为什么 Apple 强烈鼓励大家使用 UINavigationController 和/或 UITabBarController :)

关于ios - 在 MailComposer 关闭后,StatusBar 位于 navigationBar 之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15981888/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com