Reputation: 113
Are there limits imposed by Apple for the programmatically phone calls on iPhone? I don't know which document i've to read.
Upvotes: 1
Views: 846
Reputation: 1844
You can't trigger a call directly but you can use a URL Scheme to prompt the user to start a call. You can do that using the openURL method of AppDelegate. Here's a list of all the kind of things you can do like this ( including the call ). It should be easy enough to make NSTimer trigger this.
http://wiki.akosma.com/IPhone_URL_Schemes#Phone
Upvotes: 1