要打开 Facebook Native 个人资料,我可以使用:
NSURL *url = [NSURL URLWithString:@"fb://profile/<id>"];
[[UIApplication sharedApplication] openURL:url];
有没有办法为 Instagram 个人资料做同样的事情?
要打开 Facebook Native 个人资料,我可以使用:
NSURL *url = [NSURL URLWithString:@"fb://profile/<id>"];
[[UIApplication sharedApplication] openURL:url];
有没有办法为 Instagram 个人资料做同样的事情?
以下片段将使用用户名在您的设备上打开 Instagram 应用程序。
目标 C
NSURL *instagramURL = [NSURL URLWithString:@"instagram://user?username=USERNAME"];
if ([[UIApplication sharedApplication] canOpenURL:instagramURL]) {
[[UIApplication sharedApplication] openURL:instagramURL];
}
迅速
var instagramURL: NSURL = NSURL(string: "instagram://user?username=USERNAME")
if UIApplication.sharedApplication().canOpenURL(instagramURL) {
UIApplication.sharedApplication().openURL(instagramURL)
}
斯威夫特 3.0
let instagramURL:URL = URL(string: "instagram://user?username=USERNAME")!
if UIApplication.shared.canOpenURL(instagramURL) {
UIApplication.shared.open(instagramURL, options:[:], completionHandler: { (Bool) in
print("Completion block")
})
}
如果您想了解更多详细信息,可以参考以下文档链接