vote up 2 vote down star

Can I get the usere's mobile number in Objective-C on the iPhone?

flag
Isn't this a dup of stackoverflow.com/questions/193182/… ? – JeffH Mar 22 at 0:35

2 Answers

vote up 2 vote down

You can get the user's phone # from NSUserDefaults. And then look up their address book entry.

This method is completely undocumented and liable to break at a moments noticed.

Also it is fragile - user might have a bad address book with the same # used multiple times etc.

link|flag
vote up 4 vote down

Not with the official SDK. You could ask the user to point to its own contact entry using the AddressBookUI framework's pickers, or a UI of your own design.

link|flag
In fact, ICE (one of the apps in the store) does exactly this - it asks the user to pick themselves out of the contacts. – nsayer Oct 1 '08 at 20:35

Your Answer

Get an OpenID
or

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