Open the contact application from the interactive application and get the selected contact information

I want to open the contact application on iOS from the adaptive application that I am developing. In addition, I want to get the list of contacts that the user selects. Is there any way to do this in the native response?

I looked at this link: Opening the settings application from another application and found out that we can do this in iOS using URL schemes. I searched Google for the Contacts app URL scheme, but could not find it. Even if I find him, how to get a callback?

I implemented a reaction-native-contacts library to get a list of contacts. But I would prefer that my users navigate to the contacts application and select contacts. Can we do this based on the reaction?

+5
source share
1 answer

react-native-contacts-wrapper . It uses the ContactsContract API for Android, the AddressBook library for iOS8 and below, and the new contact library for ios9 +.

0
source

Source: https://habr.com/ru/post/1265941/


All Articles