0
現在,我完全知道你可以使用這樣的事情從另一個移動應用(未測試)推出的Instagram:創建一個鏈接,你的應用程序通過其他應用推出
var instagramHooks = "instagram://user?username=johndoe"
var instagramUrl = NSURL(string: instagramHooks)
if UIApplication.sharedApplication().canOpenURL(instagramUrl!) {
UIApplication.sharedApplication().openURL(instagramUrl!)
}
else {
//redirect to safari because the user doesn't have Instagram
UIApplication.sharedApplication().openURL(NSURL(string: "http://instagram.com/")!)
}
我是什麼感興趣的是創建一個url,將您直接帶到移動應用程序中的某個頁面。 instagram://user?username=johndoe
在啓動應用程序後將用戶帶到johndoe
的配置文件頁面。如何創建類似於此的鏈接?