私はInfo-plistでLandscape Left、Landscape Right、およびPortraitに設定したアプリを持っています。しかし、私は一般的に私の見解コントローラのすべてのための風景モードで動作していると私は、私は、ユーザーが電子メールを送信できるようにしたいボタンを持つビューコントローラを除いてMail ComposerがiPhoneでクラッシュする
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{return interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight;}
を設定しています。
- (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を縦に回転したいが、それに許可されていないようです。コンソールにエラーメッセージが表示されません。 ご協力いただきありがとうございます。
クラッシュは何ですか?クラッシュログはありますか? –
画面が黒く表示されず、何も起こりません。 ctw – ctw
shouldAutorotateToInterfaceOrientationを変更してそのビューコントローラでポートレートのみを有効にすると機能しますか?また、あなたはシミュレータまたは実際の電話でこれを実行していますか? – Joel