天天看點

IOS從一個APP跳到另一個APP

以下為跳轉到大衆點評APP代碼如下:

 跳轉的過程中可能會出現ERROR:

error: "This app is not allowed to query for scheme dianping"

解決方法是在info.plist檔案内添加以下配置項,将其列為白名單才可以正常檢查是否已經安裝此程式。

<key>LSApplicationQueriesSchemes</key>

<array>

        <string>weixin</string>

        <string>wechat</string>

        <string>dianping</string>

</array>

繼續閱讀