这是我的代码:
NSSharingService *service = [NSSharingService sharingServiceNamed: NSSharingServiceNameComposeMessage];
tempURL = [NSURL fileURLWithPath:[NSHomeDirectory() stringByAppendingPathComponent:@"test.zip"]]
[service performWithItems:@[@"test", tempURL]];
正确显示消息窗口,以及'测试'文字,但邮件中文件未包含。
什么有效:
NSSharingServiceNameComposeEmail
的服务类似问题:
NSSharingServiceNameSendViaAirDrop
任何想法我还能尝试什么?谢谢!