gpt4 book ai didi

iphone - 在 iOS 上通过 native Facebook 应用程序打开 Facebook 链接

转载 作者:IT王子 更新时间:2023-10-29 07:33:51 24 4
gpt4 key购买 nike

如果 iPhone 上安装了 native Facebook 应用程序。如何从我的应用程序打开到 native Facebook 应用程序的 facebook 链接。在Safari打开的情况下,链接是一样的:

http://www.facebook.com/AlibabaUS

谢谢。

最佳答案

以下是 Facebook 应用程序使用的一些方案,源链接上还有更多方案:

例子

NSURL *url = [NSURL URLWithString:@"fb://profile/<id>"];
[[UIApplication sharedApplication] openURL:url];

方案

fb://profile – Open Facebook app to the user’s profile

fb://friends – Open Facebook app to the friends list

fb://notifications – Open Facebook app to the notifications list (NOTE: there appears to be a bug with this URL. The Notifications page opens. However, it’s not possible to navigate to anywhere else in the Facebook app)

fb://feed – Open Facebook app to the News Feed

fb://events – Open Facebook app to the Events page

fb://requests – Open Facebook app to the Requests list

fb://notes – Open Facebook app to the Notes page

fb://albums – Open Facebook app to Photo Albums list

如果在打开此 url 之前您想检查用户是否访问了 facebook 应用程序,您可以执行以下操作(如以下另一个答案中所述):

if ([[UIApplication sharedApplication] canOpenURL:nsurl]){
[[UIApplication sharedApplication] openURL:nsurl];
}
else {
//Open the url as usual
}

来源

http://wiki.akosma.com/IPhone_URL_Schemes#Facebook

关于iphone - 在 iOS 上通过 native Facebook 应用程序打开 Facebook 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10416338/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com