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

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

link|improve this question
Isn't this a dup of stackoverflow.com/questions/193182/… ? – JeffH Mar 22 '09 at 0:35
interesting read: kuberan.me/2011/03/… – Phill Pafford Mar 31 '11 at 13:39
feedback

2 Answers

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|improve this answer
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
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown