Reputation: 38035
Assuming the user has granted permission for the app to access contacts, is there any way to determine which record belongs to the phone owner? For example if you browse the list of contacts on your phone, you will see a little "me" beside the record that is identified as the owner's record. So the phone clearly knows this, but is there any programmatic way to determine this? Or is that considered a privacy violation?
Upvotes: 8
Views: 1583
Reputation: 8012
I know on a Mac you can use [[ABAddressBook sharedAddressBook] me]
. For iOS, take a look at how Square's CardCase app does it.
Upvotes: 3