我是IOS開發新手。我想知道有什麼方法可以從正常的html鏈接(Safari瀏覽器)重定向,例如<a href="my sdk link">click here to download the awesome app</a>
到我的SDK
(這裏我想找出用戶的IDFA跟蹤),然後重定向到App Store中的我的應用下載頁面。從html鏈接重定向到IOS應用程序
4
A
回答
0
要打開寫代碼來打開
SVWebViewController *webViewController = [[SVWebViewController alloc] initWithAddress:@"http://www.google.com"];
[self.navigationController pushViewController:webViewController animated:YES];
2
使用JavaScript就可以解決你的問題添加SVWebViewController庫,
#進口的SVWebViewController.h。
<html>
<head>
<meta name="viewport" content="width=device-width" />
</head>
<body>
<h2><a id="applink1" href="fb://profile/116201417">open facebook with fallback to appstore</a></h2>
<h2><a id="applink2" href="unknown://nowhere">open unknown with fallback to appstore</a></h2>
<p><i>Only works on iPhone!</i></p>
<script type="text/javascript">
// To avoid the "protocol not supported" alert, fail must open another app.
var appstorefail = "itms://itunes.apple.com/us/app/facebook/id284882215?mt=8&uo=6";
function applink(fail){
return function(){
var clickedAt = +new Date;
// During tests on 3g/3gs this timeout fires immediately if less than 500ms.
setTimeout(function(){
// To avoid failing on return to MobileSafari, ensure freshness!
if (+new Date - clickedAt < 2000){
window.location = fail;
}
}, 500);
};
}
document.getElementById("applink1").onclick = applink(appstorefail);
document.getElementById("applink2").onclick = applink(appstorefail);
</script>
</body>
</html>
相關問題
- 1. MEAN應用程序鏈接重定向
- 2. 如何從zend應用程序重定向到非zend鏈接
- 3. 從HTML鏈接到Android應用程序
- 4. 用戶被重定向到iOS應用程序時,深層鏈接關閉
- 5. 從Facebook重定向到IOS應用程序的特定帖子
- 6. 開放應用程序從一個重定向鏈接
- 7. Google Play測試鏈接重定向到應用程序生產
- 8. 重定向到從Web應用程序
- 9. HTML重定向鏈接
- 10. 如何在我的應用程序中打開重定向鏈接而不重定向到外部鏈接?
- 11. 從iphone應用程序的HTML鏈接
- 12. iOS 9.2+通用鏈接重定向
- 13. 發佈Facebook應用程序鏈接到iOS應用程序
- 14. iOS如何從URL打開應用程序或重定向到應用程序商店下載應用程序
- 15. 從重定向鏈接
- 16. 鏈接從PHP重定向
- 17. 轉換HTML鏈接到iOS應用
- 18. 規則適用於從iOS應用程序鏈接到iTunes
- 19. 處理從舊固定鏈接到新鏈接的重定向
- 20. 從InAppbrowser打開的HTML頁面點擊鏈接重定向到Ionic應用程序
- 21. 創建一個鏈接,或者推出iOS應用,或重定向到應用程序商店
- 22. 從應用程序重定向
- 23. 從Servlet重定向GWT應用程序
- 24. 如何從swift(iOS)重定向Skype應用程序
- 25. 從iOS應用程序連接到sFTP
- 26. 重定向到應用程序鏈接(其他應用程序)的GWT自定義頁面
- 27. 從xcode鏈接到應用程序
- 28. 下載iOS應用程序而無需重定向到App Store
- 29. Facebook應用程序被重定向到
- 30. 運行CGI應用程序而不從HTML重定向
感謝。這真有趣。我會試試這個。 – Inaccessible
安裝應用程序之前可以獲得idfa值嗎? – Inaccessible