以下のコードを使用して、デバイスのログファイルを電子メールで送信しようとしています。iPodTouchとiPadのWi-Fiネットワークでメールを送信できます。しかし、3Gネットワーク上のiPhoneでメールを送信しようとすると、クラッシュが発生します。私はコードをデビューさせ、presentModalViewControllerを実行しているときにこれがクラッシュしていることを知りました。
この問題を解決する方法を教えてください。
- (IBAction)sendEmail:(id)sender
{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
// Set the subject of email
[picker setSubject:@"Debug Log"];
// Add email addresses
[picker setToRecipients:[NSArray arrayWithObjects:@"emailaddress1@domainName.com", @"emailaddress2@domainName.com", nil]];
// Fill out the email body text
NSString *emailBody = @"Debug Log content…… ";
// This is not an HTML formatted email
[picker setMessageBody:emailBody isHTML:NO];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *logPath = [documentsDirectory
stringByAppendingPathComponent:@"console.log"];
NSData *data = [NSData dataWithContentsOfFile:logPath];
[picker addAttachmentData:data mimeType:@"text/xml" fileName:@"console.log"];
// Show email view
[self presentModalViewController:picker animated:YES];//app crash
// Release picker
[picker release];
}
- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{
// Called once the email is sent
// Remove the email view controller
[self dismissModalViewControllerAnimated:YES];
}