Info-plist で、Landscape Left、Landscape Right、Portrait に設定したアプリがあります。ただし、私は通常、すべてのビューコントローラーをランドスケープモードで操作しており、設定しました
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{return interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight;}
ユーザーがメールを送信できるようにするボタンがあるView Controllerを除いて。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{return YES;}
メールを送信しようとすると、アプリがクラッシュします。私のiPadでは問題なく動作します。これがメールを送信するための私のコードです。
- (IBAction)sendEmail:(id)sender
{
if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *mailComposer = [[MFMailComposeViewController alloc] init];
mailComposer.mailComposeDelegate = self;
[mailComposer setSubject:@"HI!"];
UIImage *myImage = [UIImage imageNamed:@"myPicture.png"];
NSData *imageData = UIImagePNGRepresentation(myImage);
[mailComposer addAttachmentData:imageData mimeType:@"image/png" fileName:@"FullTitle.png"];
NSString *emailBody = @"Hi there!!";
[mailComposer setMessageBody:emailBody isHTML:NO];
[self presentModalViewController:mailComposer animated:YES];
}
else
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Failure"
message:@"Your device does not support email function"
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
}
}
- (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;
}
[self dismissModalViewControllerAnimated:YES];
}
よくわかりませんが、どういうわけか自分自身を横向きモードにロックした可能性があるため、メールを送信したいとき、iPhone は縦向きに回転したいのですが、許可されていないようです。コンソールにエラー メッセージが表示されません。よろしくお願いします。