Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/objective-c/26.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Objective c MFMailComposeViewControllerDelegate设置消息正文问题_Objective C_Iphone - Fatal编程技术网

Objective c MFMailComposeViewControllerDelegate设置消息正文问题

Objective c MFMailComposeViewControllerDelegate设置消息正文问题,objective-c,iphone,Objective C,Iphone,这是我的密码: if (!_mail) { _mail = [[MFMailComposeViewController alloc] init]; _mail.mailComposeDelegate = self; CGRect mailRect = _mail.view.frame; mailRect.size.height = self.view.frame.size.height; mailRect.size.width = self.vi

这是我的密码:

    if (!_mail) {
    _mail = [[MFMailComposeViewController alloc] init];
    _mail.mailComposeDelegate = self;

    CGRect mailRect = _mail.view.frame;
    mailRect.size.height = self.view.frame.size.height;
    mailRect.size.width = self.view.frame.size.width;
    _mail.view.frame = mailRect;
    _mail.view.backgroundColor = [UIColor whiteColor];
}

NSString *messageBody = @"text"

[_mail setSubject:@"Book Order"];
[_mail setMessageBody:messageBody isHTML:YES];

[self.view addSubview:_mail.view];

此消息之后未设置正文。两者都不是主题。为什么?你能帮我吗?

我找到了答案。我必须删除_mail.view.frame=mailRect;线 如果我调整它的大小,为什么它不工作