ios – 在cocoa mac OS X应用程序中分享facebook和twitter中的文本?

前端之家收集整理的这篇文章主要介绍了ios – 在cocoa mac OS X应用程序中分享facebook和twitter中的文本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我在目标c中有一个可可mac应用程序.

在我的应用程序中,我想在Facebook和Twitter上分享文本,就像我们在ios中使用SLComposeViewController一样.

我在谷歌搜索了很多,但找不到任何mac应用程序.

当我从Facebook分享它时,我看到上面的图像,而对于来自其中一个mac应用程序的twitter,我看到了相同的图像.

如何为我的mac应用程序实现相同的功能

提前致谢…

解决方法

我在@TheAmateurProgrammer的帮助下搜索了NSSharingService和NSSharingServicePicker.

我找到了link解决方案.

// Facebook

NSArray* array = @[ @"myText"];

NSSharingService* sharingServiceFB = [NSSharingService sharingServiceNamed:NSSharingServiceNamePostOnFacebook];

[sharingServiceFB performWithItems:array];

// 推特

NSArray* array = @[ @"myText"];

NSSharingService* sharingServiceFB = [NSSharingService sharingServiceNamed:NSSharingServiceNamePostOnTwitter];

    [sharingServiceFB performWithItems:array];

希望它能帮助别人……

谢谢…

猜你在找的Xcode相关文章