在解雇MFMailComposeViewController后,自定义模态视图控制器看起来很奇怪

时间:2015-07-02 07:56:19

标签: ios objective-c viewcontroller modalviewcontroller

这是我使用的代码,但是当我从邮件撰写控制器返回时,我之前的模态视图控制器大小减少了。我无法找到设置控制器大小的位置,因此它对呈现视图控制器起作用。

- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{

switch (result)
{
    case MFMailComposeResultCancelled:
        NSLog(@"Mail cancelled: you cancelled the operation and no email message was queued.");
        break;
    case MFMailComposeResultSaved:
        NSLog(@"Mail saved: you saved the email message in the drafts folder.");
        break;
    case MFMailComposeResultSent:
        NSLog(@"Mail send: the email message is queued in the outbox. It is ready to send.");
        break;
    case MFMailComposeResultFailed:
        NSLog(@"Mail failed: the email message was not saved or queued, possibly due to an error.");
        break;
    default:
        NSLog(@"Mail not sent.");
        break;
}

// Remove the mail view

[self dismissViewControllerAnimated:YES completion:nil];
self.view.frame = CGRectMake(0, 0, self.view.frame.size.width - 30, self.view.frame.size.height/2);

}

1 个答案:

答案 0 :(得分:1)

这只是一个愚蠢的错误。现在我想关闭这个问题,这就是为什么我会在很长一段时间后发布答案。

self.view.frame = CGRectMake(0, 0, self.view.frame.size.width - 30, self.view.frame.size.height/2);

每次减少宽度和尺寸时,我都必须修复这条线。这是我在iOS中的开始;)