How to create my app link to open in browser in iOS Swift

Viewed 36

I need to open my app when we click on skip this form button which is in stripe page... here if i got app link then my backend team will add that link but.. how to make my app link

how to create my project app link in ios swift to share backend team to open in browser. please guide me

1 Answers

First of all to launch your application you should have an URLScheme defined for your application:

Please check out this Apple's official documentation to understand how it's done.

Secondly, in your case to your launch on tapping Skip this form you have to open the URL Scheme defined for your app.

For eg. IF the URLScheme for the app is defined as myStripeApp

The action on the page should be trigger something like below

<a href= myStripeApp://>Open my Stripe App</a>
Related