4

我想在我的 iOS 应用程序中实现 natvie Twitter 应用程序。我已经通过使用 URL 方案在 Facebook 上完成了这项工作。但我无法为 Twitter 找到这样的东西。

对于 Facebook,我使用:

-(IBAction)facebook:(id)sender {
       [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"fb://"]];
}

但是当我尝试使用

@"Twitter" or @"twitter" or @"tw"

没发生什么事。如果你们能帮助我,那就太好了。我在 Internet 上没有找到任何东西:/ 如果有类似的东西,请 :)

提前致谢 :)

4

1 回答 1

18

你试过了吗:

twitter://

前任:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"twitter://user?screen_name=username"]];
于 2012-05-12T12:14:29.280 回答