我如何添加按钮进入Instagram?

时间:2014-10-11 22:09:51

标签: ios xcode

你好吗?

你能帮帮我吗

请问我如何在我的应用程序中添加按钮,然后转到Instagram应用程序并显示我的帐户页面?

像这样:

enter image description here

请帮帮我

1 个答案:

答案 0 :(得分:0)

我相信这是你正在寻找的(不完全确定,因为你的问题不是很具描述性)。

NSURL *url = [NSURL URLWithString:@"instagram://user?username=USERNAME"];
if ([[UIApplication sharedApplication] url]) {
    [[UIApplication sharedApplication] url];
} else {
// handle the issue
}

否则,请参阅instagram api here