我有以下代码可以打开苹果邮件应用程序。这很好用,只是它根本不能正确显示新行。这是我正在使用的代码。
NSArray *shareItems=@[@"text <br/> text one"];
NSSharingService *service = [NSSharingService sharingServiceNamed:NSSharingServiceNameComposeEmail];
service.delegate = self;
[service performWithItems:shareItems];
它显示在 Apple 邮件应用程序中,如下所示text <br/> text one
。如何在 Apple 邮件应用程序中显示新行?