0

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 は縦向きに回転したいのですが、許可されていないようです。コンソールにエラー メッセージが表示されません。よろしくお願いします。

4

2 に答える 2

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

于 2012-04-29T19:39:14.653 に答える
1

iOS 6.0 で見つかった問題の 1 つは、デバイスにメールが設定されていない場合、アプリがクラッシュするということです。で確認するだけです

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

} 

上記のチェックにより、クラッシュを回避できます。私は iOS 6.1 で作業していることに注意してください。希望が助けになります。

于 2013-07-12T11:33:37.210 に答える