ios URLSchemes

We all know that the APP in Apple's mobile phone has a sandbox, and the APP is an information island, which cannot communicate with each other. But iOS apps can register their own URL Scheme, which is designed to facilitate mutual calls between apps. We can open the app through the system's OpenURL and pass some parameters.

Design it like this in your app:

 

Then you can enter in the browser in the iphone event: WXTest:// or QQTest:// to open the APP

And you can receive parameters in the -(BOOL)application: openURL: options: method

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325830718&siteId=291194637
ios