Nomad
Nomad

Reputation: 49

access phone features via iphone SDK

is it possible to use iphone's sdk to call a person through an app and have control over the voice etc?

Regards

Upvotes: 1

Views: 213

Answers (1)

Saurabh
Saurabh

Reputation: 22873

Yes its possible to call a person using the iPhone sdk. Try this -

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8004664411"]];

But its not possible to control over voice or even call log. Because "phone" is a separate application and Apple does not allow to interact with this app.

Upvotes: 1

Related Questions