我在使用 openURL 打开邮件客户端时遇到问题。这是代码。
NSString *subject = @"Demo Subject";
NSString *body = @"<html><head>Header</head><body><a href=\"http://example.com\">Here is the demo link</a></body></html>";
NSString *urlString = [NSString stringWithFormat:@"mailto:?&subject=%@&body=%@",subject,body];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];
我想,是否有任何类型的编码需要使用特殊字符,这是确实存在的,但在示例文本中没有显示。
谢谢