1

Is there any way of opening a default iOS app from a universal link (for example the camera app).

If so, where can I find these public universal links?

3

1 Answer 1

3

Do you mean this functionality?

func open(_ scheme: String) { guard let url = URL(string: scheme) else { return } if UIApplication.shared.canOpenURL(url) { if #available(iOS 10.0, *) { UIApplication.shared.open(url) } else { UIApplication.shared.open(url as URL, options: [:], completionHandler: nil) } } } // usage: open("App-Prefs:root") 

Apple documentation about URL Schemes

Gist for iOS Settings

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.