更新(Nov 9,2009): 在3.0系统中,sdk 提供了 MFMailComposeViewController 来显示发件界面,并提供附件功能。 if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mcvc = [[[MFMailComposeViewController alloc] init] autorelease]; mcvc.mailComposeDelegate = self; [mcvc setSubject:@"Here's a great photo!"]; NSString *body = @”<h1>Check this out</h1><p>I selected this image from the <code><b>UIImagePickerController</b></code>.</p>”; [mcvc setMessageBody:body isHTML:YES]; [mcvc addAttachmentData:UIImageJPEGRepresentation(image, 1.0f) mimeType:@"image/jpeg" fileName:@"pickerimage.jpg"]; [self presentModalViewController:mcvc animated:YES]; } 在程序中如何启动系统的Email程序并在内容中添加图片附件? 以下是代码: – (NSString *) base64EncodingWithLineLength:(unsigned …
-
Pages
-
Recent Posts
-
Recent Comments
- xhan: 哇开源项目,赶紧收藏了。
- Du Song: 建议看下Fluid / Fluidium,封装网页应用很方便,功能也比较多。
- Johnkf: One of my friends already told me about this place and I do not regret that I found this article.
- reobsete-online: Many thanks.
- Ken Chung: I am developing an iPhone/iPad app. Would you be interested in helping me? I’m based in Shanghai. My...