Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 651821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:12:15+00:00 2026-05-13T22:12:15+00:00

I have a tableView which has cells with phone numbers. The app is not

  • 0

I have a tableView which has cells with phone numbers. The app is not dialing the numbers though. See the code below

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
 if (indexPath.section == 2) {
  UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
  NSString *numberToDial = [NSString stringWithFormat:@"tel:%@", selectedCell.detailTextLabel.text];

  NSLog(@"%@",numberToDial);

  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:numberToDial]];
 }
}

Console ouput:
2010-03-08 01:32:30.830 AIB[1217:207] tel:01 8350098

As you can see, the number goes to the console, but doesn’t get dialled. The weird thing is, if I change the last statement to this:

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

the phone dials the number 171 without any issue


The solution to my particular problem is, as suggested below, to remove the spaces from the phone numbers. I achieved this as follows:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    if (indexPath.section == 2) {
        UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
        NSMutableString *numberToDial = [NSMutableString stringWithFormat:@"tel:%@", selectedCell.detailTextLabel.text];

        [numberToDial replaceOccurrencesOfString:@" " 
                                      withString:@"" 
                                         options:NSLiteralSearch 
                                           range:NSMakeRange(0, [numberToDial length])];

        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:numberToDial]];
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T22:12:15+00:00Added an answer on May 13, 2026 at 10:12 pm

    You will need to sanitize the user input for it to be a valid tel:// URL. Specifically this includes stripping of:

    • Spaces
    • Hashes (#)
    • Asterisks(*)

    From iPhone Dev Center:

    To prevent users from maliciously
    redirecting phone calls or changing
    the behavior of a phone or account,
    the Phone application supports most,
    but not all, of the special characters
    in the tel scheme. Specifically, if a
    URL contains the * or # characters,
    the Phone application does not attempt
    to dial the corresponding phone
    number.

    From URLs for URLs for Telephone Calls RFC:

    …spaces MUST NOT be used in phone
    numbers in URLs as the space character
    cannot be used in URLs without
    escaping it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to Xcode and I'm trying to create an app which has a
I have a grouped table view with textfields in the tableview. For the keyboard
Have you guys had any experiences (positive or negative) by placing your source code/solution
Have just started using Visual Studio Professional's built-in unit testing features, which as I
I have an UITableView showing custom view cells that I've designed in interface builder.
I have a custom UITableViewCell which acts as a check list. As the user
I am fairly new to iPhone/ObjC programming, though I have several years of experience
Not even sure if this is feasible, but here's the use case: I have
i have an application which uses CoreData/.sqlite to store my data, a tab bar
In my iPhone application I have a table view. When user taps any row,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.