Questions tagged [telprompt]
24 questions
18
votes
4 answers
Will apps that use telprompt be rejected
In order to return to app after call, I use telprompt instead of tel. Codes like this:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://10086"]];
Somebody says that it will be rejected by apple because telpromt is not…

Smeegol
- 2,014
- 4
- 29
- 44
9
votes
3 answers
Copy/paste phone number into keypad or dial a toll free number in iOS programatically
I am trying to make a call from my app using
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://1800000002"]];
This is a toll free number in India.But while dialing, it is converting to +1(800)-000-000 (Converting and…

soumya
- 3,801
- 9
- 35
- 69
9
votes
1 answer
Detect when user press Cancel - telprompt - objective-c
I have seen this question before but without any real answer.
I am using the following code to start a phone call in objective-c.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt:1234567890"]]
This code opens a dialog…

Henrik Bengtsson
- 344
- 4
- 17
4
votes
6 answers
Not able to make phone call
I want to make a phone call and I use below code for that.
- (void)callPhoneNumber:(NSString *)phoneNumber
{
UIWebView * webView2 = [[UIWebView alloc] init];
// Remove non-digits from phone number
phoneNumber = [[phoneNumber…

Geek
- 8,280
- 17
- 73
- 137
4
votes
0 answers
iOS telprompt - can you get the status of the call?
The app I'm working on makes calls when the user tells it to, using telprompt to come back to the app when the call is over. Is there any way to tell what caused the call to end? If the call failed, I'd like to do one thing, but if it succeeded and…

Janene Pappas
- 1,366
- 12
- 26
4
votes
2 answers
Return to application after call is cancelled
I want to use telprompt:// scheme to return to my application after it makes a call. But I have a problem.
If remote person is busy two buttons are shown to me: Redial and Cancel. So if I press Cancel I won't return to my application. Is there any…

efpies
- 3,625
- 6
- 34
- 45
2
votes
0 answers
React Native iOS: telprompt for "911" number displays as "(91)1" on iPhones
Image attached. When a user clicks a button to prompt a call to "911", the number "911" displays correctly on an Android device, but on an iPhone "911" gets displayed as "(91)1". How can I fix this? Code and image below. Thank…

PolarisTLX
- 329
- 4
- 18
2
votes
0 answers
How to make sure another person attended call successfully?
From the application, I am able to call to an user,
After my call ended I need to perform functionality
The below method help me to call the user from the application.
NSString *phoneNumber = [@"telprompt://" stringByAppendingString:[[dictionaries…

KkMIW
- 1,092
- 1
- 17
- 27
2
votes
1 answer
telprompt - can I get the call duration?
I am trying to make a call through the telpromt command to return to my application after it makes a call:
NSString *telno = @"telprompt://121,,,,14";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:telno]];
Is there any way to…

DareDevil
- 902
- 8
- 21
2
votes
1 answer
Missing last character from textField when setting character limit
I've created an app which will call a 5 digit hospital extension number that the user enters in to a textField by prefixing it with the switchboard number.
As all extensions are 5 digits I would rather the app initiate a telprompt when it counts 5…

thisisinsane1
- 23
- 3
1
vote
3 answers
Replacing tel or telprompt to call
I've made an application is used to call predefined numbers upon button press. As far as i know the only way to make call inside app is to use "tel" or "telprompt". When i submitted an app i've received a rejection with this description:
2.5…

pauchan8
- 145
- 3
- 8
1
vote
1 answer
phone call failure or disconnected call backs while making a phone call
On a button click I am making a call inside my app by using the following code
NSString *phoneNumber =@"telprompt://123-4567-890";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
I want to do some working if the call…

Rajan Maheshwari
- 14,465
- 6
- 64
- 98
1
vote
1 answer
telprompt: Removing extension no from alert and call log of phone
I am trying to make a call through the telpromt command to return to my application after it makes a call:
NSString *telno = @"telprompt://121,,,,14";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:telno]];
It shows an alert view…

DareDevil
- 902
- 8
- 21
1
vote
1 answer
How to dismiss a telprompt programmatically
I am opening a dialog asking the user to call somewhere
with this code :
-(void)callPhone:(NSString *)phone{
NSURL *phoneURL = [NSURL URLWithString:[NSString stringWithFormat:@"telprompt://%@",phone]];
[[UIApplication…

Lena Bru
- 13,521
- 11
- 61
- 126
1
vote
2 answers
I want to call phone number "#51234" in Xcode use telprompt
I want to call phone number "#51234" in Xcode use telprompt.
but telprompt is reject it.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"telprompt://#5%@", nzoneNum]]];
nzomeNum is "1234"

Mr_T
- 9
- 4