Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

open your app with http:// links in ios

is there a way to open links like http://www.mydomain.app.com, so Safari would open it with my ios application? I managed to do it in android.

In ios i managed to open links with special scheme like somecheme:// using URL schemes in plist file.

But how to open http link with specific domain name? is it possible?

What i mean, is when you type or open some http url with www.domain.com/... the system suggests to open it using my app

like image 938
Jenya Kyrmyza Avatar asked Oct 31 '22 10:10

Jenya Kyrmyza


1 Answers

Assuming I've understood your question correctly – You want to open your app instead of the web page when the user follows a weblink on a certain domain, right? – here is a complete guide on how to do implement Universal Links on iOS 9:

http://blog.hokolinks.com/how-to-implement-apple-universal-links-on-ios-9/

Also check out the WWDC session: https://developer.apple.com/videos/play/wwdc2015-509/

like image 165
Alain Stulz Avatar answered Nov 15 '22 05:11

Alain Stulz