iOS 從瀏覽器啟動應用程式

2021-07-02 00:50:50 字數 994 閱讀 8851

實現這樣的功能並不麻煩,通過將網上一些相關教程彙總以後就寫了下面的教程分享。

實現效果如下,在瀏覽器中輸入「haogaoming.com://」之後就會開啟這個程式,開啟後程式中會顯示跳轉過來的鏈結位址。

下邊是啟動應用程式之後的畫面,alert一下請求過來的協議。

第一步:在info.plist中加入這些內容

}就完成了這個看似很酷的功能,至於引數傳遞的問題差不多,取出值然後判斷就行了:

nsarray *pathcomponents = [url pathcomponents];

if(pathcomponents.count != 3 )

nsstring *datatype = [nsstring stringwithformat:@"%@",[pathcomponents objectatindex:1]];//取出來的值

nsstring *dataid = [nsstring stringwithformat:@"%@",[pathcomponents objectatindex:2]];//取出來的值

Android 瀏覽器啟動應用程式

首先做成html的頁面,頁面內容格式如下 href scheme host path query 啟動應用程式a 作為測試好好寫了一下,如下 href scheme host path?query value 啟動應用程式a 接下來是android端。首先在androidmanifest.xml的m...

瀏覽器如何呼叫外部應用程式

1 首先需要編寫乙個登錄檔,副檔名.reg windows registry editor version 5.00 hkey classes root rtmp url rtmp protocol handler url protocol hkey classes root rtmp shell ...

從 HTA 中啟動應用程式

如何從 hta 中啟動應用程式?問 您好,指令碼專家!對於 hta,有沒有什麼可以替代 wscript.shell 命令?我需要執行某個應用程式並指定要開啟的檔案。dl 答 您好,dl。是的,我們確實知道這樣的命令,可以在 hta 中使用並可以替代 wscript.shell 命令,我們一會兒就會向...