views:

74

answers:

1

Hi Everyone,

So I am trying to write an app that does a person search of my company. When it returns a result, I want to include a feature to add the person to the iPad contacts app with the push of a button. The problem is I can't find a way to launch the contacts app through a custom URL scheme with the person info as parameters. Does anyone have any idea if this is possible and if so, how to go about that? This may be kind of vague and I would be more then happy to provide more details if needed. Thanks in advance!

+1  A: 

If there were a public URL scheme, Apple would have documented it in the URL Scheme Reference.

Your options are:

  1. ABNewPersonViewController or ABUnknownPersonViewController
  2. Direct modification of the address book.
Ole Begemann
Oh nice, I suspect that is what I am looking for. Thanks!
gabaum10