文件名称:IOS 开发中发送e-mail的几种方法总结
文件大小:60KB
文件格式:PDF
更新时间:2024-02-10 03:34:10
e-mail ios开发 mail
iOS系统框架提供的两种发送Email的方法 1、使用openURL来实现发邮件的功能: NSString *url = [NSString stringWithString: @mailto:foo@example. com?cc=bar@example.com&subject=Greetings from Cupertino!&body=Wish you were here!]; [[UIApplication sharedApplication] openURL: [NSURL URLWithString: url]]; 缺点很明显,