私は非常に新しいc.iユーザーが送信ボタンをクリックするたびに電子メールを送信しようとしています。ボタンをクリックするたびに、条件が満たされずループから抜けても電子メールは送信されません。目的のCを使用してメールを送信できません。
これはこれは
- (IBAction)sendbutton:(id)sender {
if ([MFMailComposeViewController canSendMail])
{
NSString *emailTitle = @"Test Email";
// Email Content
NSString *messageBody = @"testing ";
// To address
NSArray *toRecipents = [NSArray arrayWithObject:@"[email protected]"];
MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
mc.mailComposeDelegate = self;
[mc setSubject:emailTitle];
[mc setMessageBody:messageBody isHTML:NO];
[mc setToRecipients:toRecipents];
// Present mail view controller on screen
[self presentViewController:mc animated:YES completion:NULL];
}
}
-(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;
}
[self dismissViewControllerAnimated:YES completion:NULL];
}
私の.mファイルである
#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
@interface complaintsviewcontroller : UITableViewController<MFMailComposeViewControllerDelegate>
私の.hファイルで誰もが、私は上記のコードに間違い行われているものを私に提案することができますか?
あなたが受け取った特定のエラーを共有することができます.. – vaibhav
デバイス内のメールがApple Mailアプリで設定されているかどうかを確認してください。 –
私はエラーが発生していません.iブレークポイントを設定し、ボタンをクリックするとチェックします(条件が満たされていない場合はループから抜ける) – user19