'da yeni satır ve değerler yoksayılıyor muyum? Ben emailBody göz ardı edilir ve e-posta tamam ama "\ r \ n" Önceden doldurulmasını edebilirsiniz:SetMessageBody
- (void) sendEventInEmail
{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
NSString *emailSubject = [eventDictionary objectForKey:EVENT_NAME_KEY];
[picker setSubject:emailSubject];
// Fill out the email body text
NSString *iTunesLink = @"http://itunes.apple.com/gb/app/whats-on-reading/id347859140?mt=8"; // Link to iTune App link
NSString *content = [eventDictionary objectForKey:@"Description"];
NSString *emailBody = [NSString stringWithFormat:@"%@\r\nSent using <a href = '%@'>What's On Reading</a> for the iPhone.", content, iTunesLink];
[picker setMessageBody:emailBody isHTML:YES];
picker.navigationBar.barStyle = UIBarStyleBlack;
[self presentModalViewController:picker animated:YES];
[picker release];
}
Selamlar
Dave
HTML, YES, hayır ve yeni çizgiler işe yaradı. "Ve biçimlendirme kodları" nedir? – quantumpotato
@quantumpotato: Yours, –