vote up 22 vote down star
32

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

flag

11 Answers

vote up 30 vote down check

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|flag
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/… – JeffH Sep 30 at 15:46
Any updates on the press and Apple's resolution? – Bryan Nov 10 at 2:59
1  
Apple just rejected my app for using this. img.ly/dbZ – Mugunth Kumar Nov 20 at 23:51
vote up 9 vote down

Other apps that I have seen bring up the contact picker and ask the user to choose themselves.

link|flag
vote up 6 vote down

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|flag
vote up 1 vote down

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|flag
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 at 17:17
vote up 0 vote down

Actually you can, Apple does it in the Contacts app and in the Settings app, how to go about doing it is beyond me though.

link|flag
vote up 0 vote down

Does it work with firmware 2.1? I'm reading an empty string with this method.

link|flag
vote up 0 vote down

it works on 2.2.1 and it's official solution. It returns 'nil' when running on simulator, guess because, of course because no sim card plugged.

link|flag
vote up 0 vote down

Here you can find how to get the iphone sim number as string

http://blog.timeister.com/2009/06/25/objective-c-get-iphone-number/

Adrian

link|flag
vote up 0 vote down

Is there any other way other than "SBFormattedPhoneNumber" or "NSUserDefaults" to get iphone's sim card number...?

does SBFormattedPhoneNumber method works in 3.0 also... ?

link|flag
vote up -2 vote down

Is this an Apple approved method?

link|flag
vote up -5 vote down

No, there's no way to do this.

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

Your Answer

Get an OpenID
or

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