答案 0 :(得分:6)
我正在寻找类似的东西,并在ShareKit的文档中找到它: http://www.getsharekit.com/docs/
您正在寻找(我相信)正在与特定服务提供商共享,而不是使用该操作表界面。这就是我为不同平台创建不同内容所做的工作。
代码:
#import "SHKFacebook.h"
#import "SHKTwitter.h"
...
- (IBAction)shareOnFacebook {
// Create an image item
SHKItem *item = [SHKItem image:[UIImage imageNamed:@"myImage.png"] title:@"A Girraffe!"];
// Share the item on Facebook
[SHKFacebook shareItem:item];
return;
}
- (IBAction)shareOnTwitter {
// Create a text item
NSString *someText = @"This is a blurb of text I highlighted from a document.";
SHKItem *item = [SHKItem text:someText];
// Share the item on Twitter
[SHKTwitter shareItem:item];
return;
}
希望这有帮助! 奥德。
答案 1 :(得分:0)