如何在我的iPhone应用程序中添加twitter关注按钮?

时间:2012-04-30 06:06:30

标签: iphone ios5 twitter twitter-follow

开发iPhone应用程序。我的应用用户可以to follow my twitter account。我想添加Follow twitter button in my app。当用户按下按钮使用户关注我的Twitter帐户。在我没有使用任何twitter api and twitter functionality之前,所以我正努力做到这一点。你可以帮助我从应用程序本身关注另一个Twitter用户帐户吗?提前谢谢。

1 个答案:

答案 0 :(得分:10)

如果没有插入另一个Twitter应用程序或其他任何内容,您可以打开一个URL来完成这项工作。

 - (IBAction)followMeOnTwitter:(id)sender {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://twitter.com/intent/user?screen_name=<twitter_screen_name>"]];
 }

只需用您的Twitter帐户名替换该网址的末尾,它就会打开以在浏览器中关注该帐户。请务必将按钮添加到“followMeOnTwitter”中,方法是将其包含在视图的.h文件中。