Questions tagged [telprompt]
24 questions
0
votes
1 answer
How know when app open a URL?
I'm working on an iOS app and looking to see if it is possible to know when a user opens a URL (for example, user press a button and executes code like below)
[[UIApplication sharedApplication] openURL:[NSURL…

human4
- 154
- 2
- 13
0
votes
1 answer
Using telprompt in objective-c
I decided use telprompt to make a phone call from my app. The problem is that I need to cancel some code when user press Cancel button that appears when telprompt is called. How can detect user press Cancel button? Thanks a lot...

human4
- 154
- 2
- 13
0
votes
2 answers
telprompt: allows less characters than the phone itself. Which?
I'm using the address book of the iPhone to call numbers using telprompt:. A number with spaces and dashes doesn't work, while one with plus and numbers only does work. The iphone itself doesn't allow typing them, but synchronising with the mac gets…

Stephan Eggermont
- 15,847
- 1
- 38
- 65
0
votes
1 answer
objective-c replacing telprompt built in call dialog
using telprompt:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"telprompt://%@", self.phoneNumber]]];
you get a built in alert/messagebox like this:
is there a way to create a custom messagebox for…

liv a
- 3,232
- 6
- 35
- 76
0
votes
1 answer
Detect user's confirmation of iPhone call link?
The following code, if triggered by a button press in an app, presents the user with a UIAlertView giving them the option to "Cancel", and dismiss the UIAlertView, or "Call" and go through with dialing the number displayed to the…

Ryan
- 570
- 9
- 25
0
votes
1 answer
How to automatic confirm a call in telpromt confirm call alertview
im trying to make a call through the telpromt command:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://123456789"]];
The problem is, that when de code is run, it displays an UIAlertView not of my property, asking to…

Pablo Alejandro Junge
- 153
- 4
- 10
0
votes
2 answers
Using telprompt
I need to make a calling functionality from my app. I used tel:// the control doesnt go back to app automatically. If telpromp is used an alert is shown before the call. My first question is will telprompt be rejected in app store? If no then i dont…

DilipKumar
- 11
- 5
-1
votes
1 answer
Call from ios app with Pause
I am working with VOIP application. I am trying to make call from my ios app which contains Pauses indicated with (,).
NSString *phoneNumber = [@"telprompt://" stringByAppendingString:finalNumber];
[[UIApplication sharedApplication]…

Megha Parmar
- 248
- 2
- 15
-1
votes
1 answer
I need to make a call from my app, and at the end return to the app in ios objective c
I need to make a call from my app, and at the end return to the app, as I can do it using only tel: since telprompt creates a pop up and I do not want it. there is a solution ???

user1555264
- 23
- 2