iPhone/iPad. How do I launch an app from link in Safari?

前端 未结 1 597
野趣味
野趣味 2021-01-06 02:18

I have an app that I want to be launchable either explicitly when tapped or when a parameterized URL is clicked on on a webpage in Safari running on iPad or iPhone.

相关标签:
1条回答
  • 2021-01-06 02:44

    You basically need to register your own URL scheme in Info.plist, and your app becomes launchable. If you want to fine-tune the app behavior when launching from an URL, you can parse the parameters that are passed to your app as part of the URL, and do whatever you wish based on those.

    Here’s the official Apple guide about the same topic.

    0 讨论(0)
提交回复
热议问题