How to get incoming call phone number? [duplicate] - iphone

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Programmatically get the number of the incoming call
Is it possible to get the incoming call number in iphone using any private api?

You cannot do this.That will be a security risk.

Related

How Can i turn on hotspot in objective c? [duplicate]

This question already has an answer here:
Closed 10 years ago.
Possible Duplicate:
Turning personal hotspot on?
does anybody knows how to turn on and off the personal hotspot on objective c?
10 a lot.
Idan
You can't, it's a system feature that you don't have access to using public APIs.

webservice soap for iphone [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How to access SOAP services from iPhone
I want to call webservice for xcode.
I have wsdl.
What do I do?
try this and view the tutorial.. very easy..
http://sudzc.com/

Is it possible to detect if iphone/ipo/ipad is activating(user is using them) [duplicate]

This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
Is it possible to detect if my app is running and displaying on screen?
Hello everyone
My app is running in background.
Is it possible to detect if iphone/ipo/ipad is activating(user is using them) rath than is sleeping or locked screen ?
Welcome any comment
Not when it's in the background. You only receive messages from the OS when your application is involved in the event.

How to see incoming txts on iPhone [duplicate]

This question already has an answer here:
Closed 12 years ago.
Possible Duplicate:
iOS 4 has an In-App SMS SDK for sending messages, but is there a way to have your App receive incoming SMS messages?
I want to be able to use incoming texts in my app. Is there a way to get the info from a new text programmatically?
You cannot access that using the SDK.
If you want to develop for Jailbroken phones only you can.

how to post data to a site database in an iphone application? [duplicate]

This question already has answers here:
Objective-C: Best way to access REST API on your iphone
(5 answers)
Closed 9 years ago.
I want to create an iphone application that is able to post the data to a website database which is using MySQL. Can anyone give some hints?
You'll need to use NSURLConnection and NSURLRequest to send the data to the server.