我目前正在努力将 twitter 集成到我的应用程序中,我尝试对回复 twitter 帖子进行一些研究。我知道如何使用 SLRequest 来做到这一点,但它没有 UI。所以,我想用 SLComposeViewController ui 来回复。大家有什么建议吗?谢谢!
问问题
576 次
1 回答
0
在回复特定推文的情况下,请在此处查看此答案:Is there a way to reply to a specific tweet via SLComposerViewController
因此,除了使用 SLComposeViewController(如下所示)之外,您还需要传递一些附加参数,包括“in_reply_to_status_id”。上面的链接详细解释了这一点。
您可能希望回复按钮触发如下内容:
-(IBAction)TweetPressed{
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])
{
SLComposeViewController *tweetSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
[tweetSheet setInitialText:@"@USERNAME_TO_REPLY_TO"];
[self presentViewController:tweetSheet animated:YES completion:nil];
}
else
{
UIAlertView *alertView = [[UIAlertView alloc]
initWithTitle:@"Sorry"
message:@"You can't send a tweet right now, make sure your device has an internet connection and you have at least one Twitter account setup"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertView show];
}
}
这里有一个完整的教程:http: //ios-blog.co.uk/tutorials/integrating-social-media-in-your-apps/
于 2014-12-12T17:49:54.493 回答