我有加载几个 .xib 文件的 TabBar 应用程序。在其中一个视图中,我试图加载一个模态视图,以便在视图上的应用程序中撰写电子邮件。我在用
- (IBAction)buttonPressed {
MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
[controller setSubject:@"Email Subject"];
[controller setMessageBody:@"Email Messgae" isHTML:NO];
[self presentModalViewController:controller animated:YES];
[controller release];
}
我已经使用了我构建的几个基于视图的新应用程序,但不适用于 TabBar 应用程序。每当我尝试运行该操作时,什么都没有发生。有什么我遗漏的东西还是我走错了路?谢谢!如果答案很简单,对不起,我还在学习!
编辑:附加信息:重建它,它现在在运行操作时崩溃。