Электронная почта в iphone - PullRequest
       21

Электронная почта в iphone

0 голосов
/ 30 декабря 2010

Я новичок в iphone.Я собираюсь реализовать функциональность электронной почты.Я должен добавить контакты, которые появятся на событие нажатия кнопки.Под списком контактов я выбираю контакт, и он будет размещен в текстовом поле адреса.Как я могу это сделать?

Может ли кто-нибудь отправить мне образец кода?

Заранее спасибо.

1 Ответ

0 голосов
/ 30 декабря 2010

Используйте этот код, это точно будет работать,

-(IBAction)send{
[self callMailComposer];
}

-(void)callMailComposer{
Class mailClass = (NSClassFromString(@"MFMailComposeViewController"));
if (mailClass != nil)
{
    // We must always check whether the current device is configured for     sending emails
    if ([mailClass canSendMail])
        [self displayComposerSheet];
    else
        [self launchMailAppOnDevice];
}

else
{
    [self launchMailAppOnDevice];
}
}

Прагма Марк -

Прагма Марк Составить почту

Прагма Марк

// Displays an email composition interface inside the application. Populates all the Mail fields. 

 -(void)displayComposerSheet 
{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];


picker.mailComposeDelegate = self;
NSString *tosubject =@"";
[picker setSubject:tosubject];


// Set up recipients
[picker setCcRecipients:nil];   
[picker setBccRecipients:nil];

[picker setToRecipients:nil];



[picker setMessageBody:strNewsLink isHTML:NO];

[self presentModalViewController:picker animated:YES];

if(picker) [picker release];
if(picker) picker=nil;

}

// Dismisses the email composition interface when users tap Cancel or Send. Proceeds to update the message field with the result of the operation.

  - (void)mailComposeController:(MFMailComposeViewController*)controller                 didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error 
 {  
//message.hidden = NO;
// Notifies users about errors associated with the interface
switch (result)
{
    case MFMailComposeResultCancelled:
        [UIAlertView showAlertViewWithTitle:@"Canes Crunch" message:@"You have Cancelled of sending e-mail"];

        break;
    case MFMailComposeResultSaved:
        [UIAlertView showAlertViewWithTitle:@"Canes Crunch" message:@"Your e-mail has been saved successfully"];

        break;
    case MFMailComposeResultSent:
        [UIAlertView showAlertViewWithTitle:@"Canes Crunch" message:@"Your e-mail has been sent successfully"];

        break;
    case MFMailComposeResultFailed:
        [UIAlertView showAlertViewWithTitle:@"Canes Crunch" message:@"Failed to send e-mail"];

        break;
    default:
        [UIAlertView showAlertViewWithTitle:@"Canes Crunch" message:@"E-mail Not Sent"];

        break;
}
[self dismissModalViewControllerAnimated:YES];

}

Прагма Марк

Прагма Марк Обходной путь

Прагма Марк

// Launches the Mail application on the device.
-(void)launchMailAppOnDevice
{

NSString *recipients = @"mailto:?cc=&subject=";
NSString *body = @"&body=";
NSString *email = [NSString stringWithFormat:@"%@%@", recipients, body];
email = [email stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:email]];

}
...