Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to add a contact from within an app?

In our app, we want to have an 'add contact' button, which launches the contacts app with a prepopulated new contact. Is that possible, and if so how? I'd like to avoid having to design our own 'new contact' form.

share|improve this question

marked as duplicate by luvieere, Mat, 0A0D, Stefan Gehrig, Brad Larson Sep 7 '11 at 15:44

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

See this Question for your answer.

Basically you need to use ABNewPersonViewController.

share|improve this answer

Instantiate a ABNewPersonViewController and present it modally. You can optionally create a ABRecordRef containing the values you want to be prepopulated and assign it to the controller's displayedPerson property.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.