Intent for iOS

barmaglot

Newbie
Joined
Feb 8, 2022
Messages
4
Reaction score
0
Hi all!
Is there a similar tool to "INTENT" for ios? The simplest example: TikTok app, the user clicks on a link in his account -> he is shown a page with a button -> he clicks on the button (which has the android intent to the site: 'intent://google.com#Intent;scheme=https;package=com.android.chrome;end') -> he gets thrown out of webview TikTok to the chrome browser to the site. How can this be done for ios and safari? Also in one line of code.
 
Hi all!
Is there a similar tool to "INTENT" for ios? The simplest example: TikTok app, the user clicks on a link in his account -> he is shown a page with a button -> he clicks on the button (which has the android intent to the site: 'intent://google.com#Intent;scheme=https;package=com.android.chrome;end') -> he gets thrown out of webview TikTok to the chrome browser to the site. How can this be done for ios and safari? Also in one line of code.
Apple has an app intent framework. Based off the documentation it looks similar to Android in that it allows you to expose functionality to system services and 3rd party apps.

Documentation Link: https://developer.apple.com/documentation/appintents
 
Apple has an app intent framework. Based off the documentation it looks similar to Android in that it allows you to expose functionality to system services and 3rd party apps.

Documentation Link: https://developer.apple.com/documentation/appintents
Read. I guess I'm stupid. I couldn't figure out how to do this for iOS. There is also a variant with SwiftUI. I have to give it a try.
 
Back
Top