如何在UIActionSheet中单击索引处的按钮时撰写邮件


当我

单击UIActionSheet中的电子邮件选项时,我对如何显示邮件编辑器有点困惑。这是我的示例代码:

-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
    if(buttonIndex == 0)
    {
        NSString *emailTitle = @"Test Email";
        NSString *messageBody = @"iOS programming is so fun!";
        NSArray *toRecipents = [NSArray arrayWithObject:@"support@email.com"];
        MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
        mc.mailComposeDelegate = self;
        [mc setSubject:emailTitle];
        [mc setMessageBody:messageBody isHTML:NO];
        [mc setToRecipients:toRecipents];
        [self presentViewController:mc animated:YES completion:NULL];
    }
}

确保添加到 .h 文件并导入 MessageUI.framework

这正是您正在寻找的。我经常使用这个。顺便说一下,UIActionSheets在iOS 8中被弃用了。不过你去吧:

.h

ViewController : UIViewController <MFMailComposeViewControllerDelegate>

.m

- (IBAction)showActionSheet:(id)sender {
UIActionSheet *moreActions = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Add To Favorites", @"Search",@"Email", nil];
[moreActions showInView:self.view];
}
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
switch (buttonIndex) {
    case 0: [self addToFav:self];
        break;
    case 1: ; [self popSearchBar:self];
        break;
    case 2: { [self sendEmail];
        break;
    }
        break;
}
}
- (void)sendEmail {
NSString *emailTitle = @"This is email title";
// Email Content as for HTML
NSString *messageBody = [NSString stringWithFormat:@"I may have found a missing document in your catalog. I tried opening :<p><strong><font color="red"> %@ </font><br>'%@'</strong></p> with no results. Can I have a dollar for reporting this?", self.title, self.titleString];
// To address
NSArray *toRecipents = [NSArray arrayWithObject:@"youremail@google.com"];
MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
mc.mailComposeDelegate = self;
[mc setSubject:emailTitle];
[mc setMessageBody:messageBody isHTML:YES];
[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");
        [self dismissViewControllerAnimated:YES completion:NULL];
        break;
    case MFMailComposeResultSaved:
        NSLog(@"Mail saved");
        [self dismissViewControllerAnimated:YES completion:NULL];
        break;
    case MFMailComposeResultSent:
        NSLog(@"Mail sent");
        [self dismissViewControllerAnimated:YES completion:NULL];
        break;
    case MFMailComposeResultFailed:
        NSLog(@"Mail sent failure: %@", [error localizedDescription]);
        break;
    default:
        break;
}
// Close the Mail Interface
[self dismissViewControllerAnimated:YES completion:NULL];
}

另请注意,有些人在使用模拟器电子邮件时遇到问题。 在放弃之前在设备上尝试一下。

这是代码:

首先添加并导入消息框架:

#import <MessageUI/MessageUI.h>

然后像这样将自己标记为代表

@interface MYViewController () <MFMailComposeViewControllerDelegate>

然后拉起作曲家:

- (IBAction)emailButtonPressed:(id)sender
{
    if ([MFMailComposeViewController canSendMail]) {
        MFMailComposeViewController *composeViewController = [[MFMailComposeViewController alloc] initWithNibName:nil bundle:nil];
        [composeViewController setMailComposeDelegate:self];
        [composeViewController setToRecipients:@[@"example@email.com"]];
        [composeViewController setSubject:@"example subject"];
        [self presentViewController:composeViewController animated:YES completion:nil];
    }
}

然后,要处理委托回调并关闭作曲家,请执行以下操作:

- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{
    //Add an alert in case of failure
    [self dismissViewControllerAnimated:YES completion:nil];
}

在操作表中使用 actionSheet: clickedButtonAtIndex:

    - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
    //Get the name of the current pressed button
    NSString *buttonTitle = [actionSheet buttonTitleAtIndex:buttonIndex];
    if  ([buttonTitle isEqualToString:@"Your button title"]) {
        [self btnContact];
    }
}

调用此方法

- (void)btnContact{
    // Email Subject
    NSString *emailTitle = @"";
    // Email Content
    NSString *messageBody = @"";
    // To address
    NSString *toRecp = @"";
    NSArray *toRecipents = [NSArray arrayWithObject:toRecp];
    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];
}

这是 appcoda 的代码。而不是索引,使用按钮的名称来触发您的邮件选项。

最新更新