Is there any way to get own phone number by standard APIs from iPhone SDK?

link|improve this question

feedback

6 Answers

up vote 94 down vote accepted

At the risk of getting negative marks, I want to suggest that the highest ranking solution (currently the first response) violates the latest SDK Agreement as of Nov 5, 2009. Our application was just rejected for using it. Here's the response from Apple:

"For security reasons, iPhone OS restricts an application (including its preferences and data) to a unique location in the file system. This restriction is part of the security feature known as the application's "sandbox." The sandbox is a set of fine-grained controls limiting an application's access to files, preferences, network resources, hardware, and so on."

The device's phone number is not available within your application's container. You will need to revise your application to read only within your directory container and resubmit your binary to iTunes Connect in order for your application to be reconsidered for the App Store.

This was a real disappointment since we wanted to spare the user having to enter their own phone number.

link|improve this answer
Apple loves to disappoint. – capdragon May 10 at 17:09
feedback

Just to expand on an earlier answer, something like this does it for me:

NSString *num = [[NSUserDefaults standardUserDefaults] stringForKey:@"SBFormattedPhoneNumber"];

Note: This retrieves the "Phone number" that was entered during the iPhone's iTunes activation and can be null or an incorrect value. It's NOT read from the SIM card.

At least that does in 2.1. There are a couple of other interesting keys in NSUserDefaults that may also not last. (This is in my app which uses a UIWebView)

WebKitJavaScriptCanOpenWindowsAutomatically
NSInterfaceStyle
TVOutStatus
WebKitDeveloperExtrasEnabledPreferenceKey

and so on.

Not sure what, if anything, the others do.

link|improve this answer
1  
Ace! Thanks Robert ) – Stream Oct 22 '08 at 9:24
There's been some recent press about the security concerns behind this ability: theregister.co.uk/2009/09/30/iphone_security – JeffH Sep 30 '09 at 15:46
Any updates on the press and Apple's resolution? – Bryan Nov 10 '09 at 2:59
44  
Apple just rejected my app for using this. img.ly/dbZ – Mugunth Nov 20 '09 at 23:51
7  
Don't do it. Ask the user for the number via keypad or contact chooser. You should make any information gathering as explicit as possible to the user. It may not be the most convenient, but it's very easy to save the number, so you only have to ask for it once. – David Kanarek Jan 18 '10 at 23:32
show 2 more comments
feedback

No, there's no way to do this.

link|improve this answer
23  
Not sure why this is getting so many down-votes -- it's as correct as it gets. – Nathan de Vries Nov 4 '09 at 13:11
feedback

As you probably all ready know if you use the following line of code, your app will be rejected by Apple

NSString *num = [[NSUserDefaults standardUserDefaults] stringForKey:@"SBFormattedPhoneNumber"];

here is a reference

http://ayeapi.blogspot.com/2009/12/sbformatphonenumber-is-lie.html

you can use the following information instead

NSString *phoneName = [[UIDevice currentDevice] name];

NSString *phoneUniqueIdentifier = [[UIDevice currentDevice] uniqueIdentifier];

and so on

@property(nonatomic,readonly,retain) NSString    *name;              // e.g. "My iPhone"
@property(nonatomic,readonly,retain) NSString    *model;             // e.g. @"iPhone", @"iPod Touch"
@property(nonatomic,readonly,retain) NSString    *localizedModel;    // localized version of model
@property(nonatomic,readonly,retain) NSString    *systemName;        // e.g. @"iPhone OS"
@property(nonatomic,readonly,retain) NSString    *systemVersion;     // e.g. @"2.0"
@property(nonatomic,readonly) UIDeviceOrientation orientation;       // return current device orientation
@property(nonatomic,readonly,retain) NSString    *uniqueIdentifier;  // a string unique to each device based on various hardware info.

Hope this helps!

link|improve this answer
2  
uniqueIdentifier is also deprecated in iOS5. Use MAC address instead. – Shivan Raptor Jan 6 at 6:19
feedback

I don't think it would be 100% reliable anyway. I had my old number transfered to the iPhone's SIM by the cell operator and the iPhone still doesn't show it in the 'My Number' header at the top of the contacts section. (This is after I did a full firmware wipe for other reasons)

link|improve this answer
Yes, definitely this feature should be used only as an addition to the contact picker. Sometimes, it also can be useful to scan an AddressBook for the phone number with a suffix retrieved from the Defaults by SBFormattedPhoneNumber key. – Stream Feb 10 '09 at 17:17
feedback

may be useful for others searching for a solution that does not use private api's

how-does-squares-cardcase-app-do-this - use device name to capture users name

just amend to capture phone number or other details as appropriate

link|improve this answer
feedback

protected by Bill the Lizard Jul 20 '10 at 19:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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