views:

59

answers:

1

I would like to launch the Contacts.app when the user needs to add a contact. My app already reads from the contact API. I would rather not re-implement functionality if I can avoid it. I am targeting iOS 4.0 and above.

+3  A: 

If you want to add a contact, use ABNewPersonViewController. See Interacting Using UI Controllers for full details on this and the other AB UIViewControllers.

Rob Napier
+1 why launch another app when you can do it for free in the same one?
Dave DeLong