noway - PUBLIC
  • DOCS FOR THINGS
  • _ref
    • Working Memory
    • NASA’s 10 rules for writing mission-critical code
    • React Native
  • _docs
    • Cryptography
    • Store APIs Key in FrontEnd SDK issues
    • APIs abuse issues
    • Webpack
    • Specific things
      • Text recognition
    • Book reviews
      • April 2020
      • 1-2/2020
      • March 2020
    • Visualization
    • MacOS
    • Go
    • Server
      • Easy way to setup a local HTTP Server on macOS
    • React
    • Reading
    • Tips
      • MVP
      • Sleeping in the right way
      • Get more things done
    • VS Code
      • Intelligent doesn't auto complete the JSX attribute or react-native components
      • Setting.json
    • Service Registration
      • Apple Enterprise Developer Account
    • DevOps
      • Using NGINX for ReactJS
    • Firebase
      • Upload image
      • Save data
      • Save Data with unique key
      • Setup local firebase functions
    • Documentation
      • API Documentation
    • React Native
      • Tips
      • Performance
      • Patterns in React
      • Rendering in React
      • View JS from apk
      • Flatlist with large data list causes blank view
      • Facebook SDK
      • Screen Events
      • Hotkeys
      • Deep Links
        • iOS Deep Link: Universal Link vs URL Schemes‌
        • Deferred Link‌
      • Text going off screen with flexDirection: 'row'
  • _posts
    • 2020-07-13-How-to-Understand-things
    • 2019-02-20-how-to-create-Jekyll-blog-with-github-page
    • 2019-03-01-books-02-19
    • 2019-02-11-highlight-the-pragmatic-programmer-part-01
    • 2019-02-15-highlight-the-pragmatic-programmer-part-03
    • 2019-02-14-highlight-the-pragmatic-programmer-part-02
    • 2019-04-11-books-03-19
    • 2019-03-07-telegram-bot-as-a-real-time-logger
    • 2019-02-04-generic-loading-ios
    • 2019-01-31-summary-books-01-19
    • 2019-03-27-short-polling-with-Swift
    • 2019-02-22-try-catch-exception-rather-than-return-codes
    • 2019-09-29-api-docs
  • category-archive
  • tag-archive
Powered by GitBook
On this page
  • https://www.adjust.com/blog/universal-links-vs-deep-links/
  • What are 'Universal Links'?
  • https://stackoverflow.com/questions/35522618/universal-links-on-ios-vs-deep-links-url-schemes

Was this helpful?

  1. _docs
  2. React Native
  3. Deep Links

iOS Deep Link: Universal Link vs URL Schemes‌

PreviousDeep LinksNextDeferred Link‌

Last updated 5 years ago

Was this helpful?

What are 'Universal Links'?

are Apple’s way of launching apps on their operating system from a website, also known as a web view. They link to content inside an app or website, giving iOS users an integrated mobile experience.

Broadly, there aren’t many differences between and traditional . However, universal links are exclusive to Apple devices, and have the ability to open a web page from an application

Universal links is the iOS's capability of sending web url request to a given app, instead of opening them in the browser.

URL-schemes is an apps ability to open in a given state, described by the url, and handled in code by the developer.

Say you have an app called "Cool App", and you've registed the url-scheme "coolapp". And your app have different areas like "Nice gadgets" and "Nice stuff". Now you can open your app with at link link coolapp://nice-gadgets. To make the app open on the nice gadget section, you have to implement the method, and within this discover the requested url, and make the app open the requested view controller.

At the same time you have a website called www.coolapp.com. When browsing using an iOS device, and you come across a link to your site - say www.coolapp.com/nice-gadgets, and opening the link, it will open in the browser. By enabling universal links it will open the app instead by calling the method given the url as parameter. From here you can use the same logic from the url scheme handling, to open the app in the requested state.

So will universal links replace url schemes? I doubt it, but they are going to compliments each other in a nice way.

Are universal links deep links? No, but they can initiate the process of using deep links within an app.

https://www.adjust.com/blog/universal-links-vs-deep-links/
Universal links
universal links
deep links
https://stackoverflow.com/questions/35522618/universal-links-on-ios-vs-deep-links-url-schemes
application(_:openURL:options:)
application(_:continueUserActivity:restorationHandler:)