私はクライアントに彼のデバイスでアプリをテストさせています。彼は iOS 6.1.3 で iPhone 3GS を使用しています。
アプリには、アプリに関する情報などを共有できる簡単なセクションが含まれています。
彼が報告した問題は、メール コンポーザ (presentViewController) を開くと、アプリが表示された直後にメール ウィンドウを自動的に閉じることです。そのため、電子メールをキャンセルした場合と同じ結果で、上昇してから再び直接下降します。
なぜこれが問題を報告したのがこの単一のテスターだけなのか、私にはまったくわかりません。シミュレータ iOS 6.1 および 7.0 でうまく動作し、iPhone 4、4S、および 5 などの他のすべてのデバイスでうまく動作します。コードは次のとおりです。3GS がコンパイルできない何か間違ったことをしている可能性があります。
#pragma mark - Share to mail
// Share mail button
- (IBAction)shareTo_mail_BtnClicked:(id)sender
{
[HUD showUIBlockingIndicatorWithText:@"Laddar mail"];
// Email Subject
NSString *emailTitle = PROMO_TEXT;
// Email Content
NSString *messageBody = SHARED_INFO_TEXT;
// If mail account can't bee found
if(![MFMailComposeViewController canSendMail]) {
[HUD hideUIBlockingIndicator];
// Alert the user that no mail account is connected to the phone
UIAlertView *warningAlert = [[UIAlertView alloc] initWithTitle:@"Ett fel inträffade" message:@"Kontrollera att du har ett mail-konto anslutet till telefonen." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[warningAlert show];
return;
}else {
NSLog(@"Mail account found!");
}
MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
mc.mailComposeDelegate = self;
[mc setSubject:emailTitle];
[mc setMessageBody:messageBody isHTML:NO];
[self presentViewController:mc animated:YES completion:nil];
[HUD hideUIBlockingIndicator];
}
// Mail did finish with result
- (void) mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
{
switch (result)
{
case MFMailComposeResultCancelled:
NSLog(@"Mail cancelled");
break;
case MFMailComposeResultSaved:
NSLog(@"Mail saved");
break;
case MFMailComposeResultSent:
NSLog(@"Mail sent");
break;
case MFMailComposeResultFailed:
NSLog(@"Mail sent failure: %@", [error localizedDescription]);
break;
default:
break;
}
// Close the Mail Interface
[self dismissViewControllerAnimated:YES completion:nil];
}