I would like to start a communication between my app and Safari.
In my app i'm storing data in the Keychain and i know that i could use UICKeyChainStore
to share these data between apps, but i would like to know if i could also share with Safari native app, making Safari read some data stored in the Keychain (or else access my app database) and/or pass data to my app.
I've been looking without success. What i really want is to know if it's "possibile" or not, before spending time reading documentations and so on. Everything for now should be handled on mobile devices (iPhone & iPad).
A possibile solutions that i found working is to create another (2°) app implementing a webView
, and i can transfer data to auto-compile fields from my other (1°) app, but accessing directly the Safari native app would be better for my purpose.
Thanks for your help.