我的应用程序需要通过Twitter或Facebook应用程序打开Facebook页面或Twitter页面,例如:http://facebook.com/Apple或https://twitter.com/Apple,但我不知道该怎么做。 我看到我们可以使用像fb:// profile这样的命令,但是我没有看到打开页面的命令。 感谢您的评论。
答案 0 :(得分:0)
试试下面在Safari中打开
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://facebook.com"]];
或打开原生应用
if([[UIApplication sharedApplication]canOpenURL:[NSURL URLWithString:@"fb://profile"]]) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"fb://profile"]];
}