我想实现Twitter分享按钮,当用户点击Twitter按钮并弹出Twitter消息时,他们会点击POST并将该帖子发送到用户的Twitter页面。
我实施了社交框架
-(IBAction)Twitter:(id)sender{
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])
{
SLComposeViewController *TWITTER = [SLComposeViewController
composeViewControllerForServiceType:SLServiceTypeTwitter];
[TWITTER addURL:[NSURL URLWithString:@"https://twitter.com/@TweetAccount"]]; //<-- Do I even need this line?
[self presentViewController:TWITTER animated:YES completion:nil];
}
}
只要我通过iOS设备登录twitter,当我点击Twitter按钮时,POST就会发送到@TweetAccount网址。但是,当用户在他们的设备上登录他们的Twitter帐户并点击我的应用程序中的推特按钮时,他们的POST也会转到我的@TweetAccount还是会转到他们自己的帐户? (这是我很困惑的部分)
如果我不小心将其转到我的帐户,如何将POST转到他们的帐户?