通常、mfmailcomposeviewcontroller を次のように使用する場合:
if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *mcvc = [[MFMailComposeViewController alloc] init];
mcvc.mailComposeDelegate = self;
[mcvc setSubject:@"Check out these diamonds!"];
[self presentModalViewController:mcvc animated:YES];
[mcvc release];
}
そして、iOS 6でこのエラーが発生しています:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException',
reason: 'Could not load NIB in bundle: 'NSBundle </Users/ericshorr/Library/Application Support/iPhone Simulator/6.0/Applications/7904C2AD-23E1-4211-B5FA-A1F03CB3A875/SDE Group Diamonds.app> (loaded)' with name 'MFMailComposeInternalViewController''