2012-04-29 7 views
0

私は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を縦に回転したいが、それに許可されていないようです。コンソールにエラーメッセージが表示されません。 ご協力いただきありがとうございます。

+0

クラッシュは何ですか?クラッシュログはありますか? –

+0

画面が黒く表示されず、何も起こりません。 ctw – ctw

+0

shouldAutorotateToInterfaceOrientationを変更してそのビューコントローラでポートレートのみを有効にすると機能しますか?また、あなたはシミュレータまたは実際の電話でこれを実行していますか? – Joel

答えて

1

あなたのアプリのメモリが不足している可能性があります。これは、UIImagePNGRepresentation()を呼び出すことによって発生します。この関数は、NSDataを作成するときに、イメージ全体をメモリにコピーします。画像が大きくなればなるほど、使用されるメモリは増えます。 UIImagePNGRepresentation()の代わりにUIImageJPEGRepresentation()を使用し、compressionQualityパラメータに0.6などを渡すことでこの問題を解決できます。詳細はAppleのドキュメントにあります。http://developer.apple.com/library/ios/#documentation/uikit/reference/UIKitFunctionReference/Reference/reference.html#//apple_ref/c/func/UIImageJPEGRepresentation

+0

イメージをmyImageデータの問題であるかどうか確認します。それでも動作しません。それは肖像画に回転しようとすると、私は黒い画面が表示されます。 – ctw

1

iOS 6.0で見つかった1つの問題は、デバイスにメールが設定されていないと、アプリケーションがクラッシュすることです。 はちょうど私たちは、私は、IOS 6.1に取り組んでいますcrash.Noteを回避することができます上記のチェックと

if([MFMailComposeViewController canSendMail]) 
{ 
     [self presentViewController:yourMailComposer animated:YES completion:nil]; 

} 

でそれを確認してください。 希望が役立ちます。

関連する問題