How to find a mobile phone number using the iPhone application

I want to make an application on the iPhone that defines the area (number) of the mobile number when the user receives a call. Can someone give me guidance on how to complete this task?

0
source share
2 answers

You cannot access the details of an incoming call on iPhone.

Crazy idea: the user will determine the phone number of your server (SIP, VOIP) as "forward when rejected" - the number. When a user receives a call, he simply rejects it, so he will be redirected to your server. There you can extract information and send it to the iPhone (Push Service). And finally, you would redirect the callback from the server to the user iPhone.

+2

, ( ), ( ) :

iOS

SQLite calldata.db AppSupport.framework, , , ( , ).

, , 212 - -, -:

SELECT * FROM citycode, npanxx, npa
WHERE npanxx.npa = 212 
AND citycode.code = npanxx.rate_center
AND npanxx.npa = npa.npa

, - Apple ( , Default.phoneformat AppSupport.framework , App Store, . : fooobar.com/questions/441142/...). , AppSupport.framework , , .

( ), , , . , Cydia , .

0

All Articles