views:

229

answers:

1

As far as my understanding, there is no public API available in iPhone SDK to find the users mobile number.

Can we find the mobile number of iPhone user using the Core telephony framework added in 4.0 SDK?

+1  A: 

No, the CoreTelephony framework provides some basic information about the carrier and limited info about calls, not much else.

The limited information includes things like the amount of current active calls, the call ID (not a mobile number, just a unique ID that the OS uses to track the particular call) and the state of a call, like whether the call is on hold or not.

The main feature in CallTelephony is an API to check whether or not a carrier allows VoIP over 3G.

Jasarien
is the call id goves by iphone os is same for same user or it chooses id randomly?
pankaj kainthla
As far as I know, there's no correlation between user and ID. The ID simply identifies one call amongst many. If the same person calls again, I'm pretty sure they'll get a new ID. The ID is unique to the call, not to the user/person.
Jasarien