up vote 8 down vote favorite
3
share [g+] share [fb]

So I'm stumped on this one.

In Mac OS X there is an easy way to get the "Me" card (the owner of the Mac/account) from the built-in address book API.

Has anyone found a way to find out which contact (if it exists) belongs to the owner of the iPhone?

link|improve this question
1  
Apparently not, according to @wilshipley: twitter.com/wilshipley/status/1369679612 – Loïc Wolff May 7 '09 at 18:18
feedback

3 Answers

up vote 4 down vote accepted

You could use the undocumented user default:

[[NSUserDefaults standardUserDefaults] objectForKey:@"SBFormattedPhoneNumber"];

and then search the address book for the card with that phone number.

Keep in mind that since the User Default is undocumented, Apple could change at any time and you may have trouble getting into the App Store.

Another approach you could take, although it is much more fragile, is to look at the device name. If the user hasn't changed it from the default "User Name's iPhone" AND they are using their real name as an iPhone, you could grab the user name from that. Again, not the best solution by any means, but it does give you something else to try.

The generally accepted answer to this question is to file a Radar with Apple for this feature and to prompt users to choose their card.

link|improve this answer
Apps have been rejected from the store for doing this. Anyway it's not reliable-- if the user ported their phone number from another cell phone carrier, this call almost certainly gives an incorrect result. – Tom Harrington May 8 '09 at 16:54
Thanks for the help. After posting this questions, I though about the SBFormattedPhoneNumber approach. It could easily be implemented in a a "safe" future proof way, but it sounds like Apple may be discouraging this for a variety of reasons. Also, Tom, thanks for the heads up. – amattn May 8 '09 at 18:31
feedback

There is no such API in the iPhone SDK 2.2.1 and earlier. Please file a request for it at: http://bugreport.apple.com

link|improve this answer
Is this still true in the 3.1 SDK? – Steven Fisher Jan 29 '10 at 21:09
Yes, I believe so – Mike Abdullah Feb 14 '10 at 22:26
Any improvements on this in 4.2? – adib Nov 17 '10 at 3:50
feedback

There's no API for getting the "me" card because there is no "me" card. The iPhone's contacts app has no way of marking a card as being "me", and the API reflects this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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