Is it possible to pop the address book with users contacts in an app?
I want to let the user dial to his contacts from my app.
I wanted to do this with URL SCHEME CALL but I don’t want a specific contact, I want the user to choose who to dial to.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
ABPeoplePickerNavigationControllerclass to allow user to choose a contact from his address book. When contact is selected thepeoplePickerNavigationController:shouldContinueAfterSelectingPerson:method in picker’s delegate is called (see ABPeoplePickerNavigationControllerDelegate protocol reference for more methods available) and you can dial selected contact in that method as you wanted.