你好吗?
你能帮帮我吗请问我如何在我的应用程序中添加按钮,然后转到Instagram应用程序并显示我的帐户页面?
像这样:
请帮帮我
答案 0 :(得分:0)
我相信这是你正在寻找的(不完全确定,因为你的问题不是很具描述性)。
NSURL *url = [NSURL URLWithString:@"instagram://user?username=USERNAME"];
if ([[UIApplication sharedApplication] url]) {
[[UIApplication sharedApplication] url];
} else {
// handle the issue
}
否则,请参阅instagram api here。