嗨,我在目标c中有一个可可mac应用程序.
在我的应用程序中,我想在Facebook和Twitter上分享文本,就像我们在ios中使用SLComposeViewController一样.
我在谷歌搜索了很多,但找不到任何mac应用程序.
当我从Facebook分享它时,我看到上面的图像,而对于来自其中一个mac应用程序的twitter,我看到了相同的图像.
如何为我的mac应用程序实现相同的功能?
提前致谢…
解决方法
我在@TheAmateurProgrammer的帮助下搜索了NSSharingService和NSSharingServicePicker.
// Facebook
NSArray* array = @[ @"myText"]; NSSharingService* sharingServiceFB = [NSSharingService sharingServiceNamed:NSSharingServiceNamePostOnFacebook]; [sharingServiceFB performWithItems:array];
// 推特
NSArray* array = @[ @"myText"]; NSSharingService* sharingServiceFB = [NSSharingService sharingServiceNamed:NSSharingServiceNamePostOnTwitter]; [sharingServiceFB performWithItems:array];
希望它能帮助别人……
谢谢…