在山狮上,我尝试使用 AppKit.framework 的 NSSharingService 类提供新的共享可能性
这种代码一切正常
NSArray* array = @[ @"myText", [NSImage imageNamed:@"myImageFile"] ];
NSSharingService* sharingServiceFB = [NSSharingService sharingServiceNamed:NSSharingServiceNamePostOnFacebook];
[sharingServiceFB performWithItems:array];
但是我想在没有 performWithItems 函数生成的共享窗口的情况下做同样的事情。因为我正在考虑我的应用程序的用户不想确认他想要发送消息,因为他已经选择了那个。我在此类中看不到任何“直接发布”功能。是否需要以其他方式完成?