4

问题:在我作为模态视图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 后:

解散后查看

4

2 回答 2

3

WantsFullScreenLayout 是一个复杂且不相关的东西。所有视图控制器都需要嵌入到“布局”视图控制器(Apples UINavigationController,Apple 的 UITabBarController)中,或者完全实现“我应该有多大,我应该在哪里定位?”的复杂逻辑。他们自己。

Apple 在 iOS 1.0 中决定您看到的 iPhone 主视图不会从 0,0 开始。包含它的 Window 从 (0,0) 开始,但它与状态栏重叠。

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

净效果是:

  1. UINavigationController 和 UITabBarController 具有特殊的(未记录的)内部代码,使其看起来好像(0,0)是左上角 - 它们强制调整大小/重新定位您添加到它们的任何 UIViewController
  2. ...如果您不使用其中一个作为主控制器,则必须自己重新实现该逻辑。如果您使用的是第 3 方 UIViewController 实例,则逻辑通常执行不正确或丢失。
  3. ...您可以通过重新定位 UIViewController.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 :)

于 2013-04-13T21:16:00.233 回答
0

这种替代解决方案也非常方便处理顶部布局指南在以模态方式呈现视图控制器后重新定位自身的奇怪行为。

将顶部间距的约束添加到“顶部布局指南”而不是实际的“视图”。选择视图(当前距离...),如下图所示: 在此处输入图像描述

礼貌:https ://stackoverflow.com/a/24818204/2959346

于 2017-07-23T22:33:52.587 回答