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 5966435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T19:48:00+00:00 2026-05-22T19:48:00+00:00

According to Apple’s documentation , in order to make phone call from my app,

  • 0

According to Apple’s documentation, in order to make phone call from my app, I need to implement the following protocols:

HTML link:

<a href="tel:1-408-555-5555">1-408-555-5555</a>

Native application URL string:

tel:1-408-555-5555

However, upon completion of a phone call initiated from an HTML link inside a UIWebView, I am redirected right back to my application. But upon completion of a phone call made from a native application URL string, my iphone stays in the iphone’s regular phone application, and if I want to return to my application I have to do so manually.

As far as I can tell from reading what others have said, there is no way to change this behavior.

Here is my question:

  1. Is it true that it’s impossible
    to return to an application after
    making a phone call from a native
    application URL string?
  2. Would there be any downside to
    implementing a UIWebView instead of
    a UILabel in situations where I
    really wanted the user to be
    redirected back to my application
    after completing a phone call?
  • 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-22T19:48:01+00:00Added an answer on May 22, 2026 at 7:48 pm
    1. Behavior does differ between calling -[UIApplication openURL:] with a tel: URL, and clicking a link to the same URL in a UIWebView.

    2. Using a UIWebView instead of a UILabel might have some downsides, but you don’t have to actually display the UIWebView to get its tel URL handling behavior. Instead, just load a tel URL request in an instance of UIWebView without adding it to your view hierarchy.

    For example:

    #import <Foundation/Foundation.h>
    #import <UIKit/UIKit.h>
    
    @interface PhoneCaller : NSObject
    {
      @private
        UIWebView *webview;
    }
    - (void)callTelURL:(NSURL *)url;
    @end
    
    @implementation
    - (id)init
    {
        self = [super init];
        if (self)
        {
            webview = [[UIWebView alloc] init];
        }
        return self;
    }
    - (void)callTelURL:(NSURL *)url
    {
        [webview loadRequest:[NSURLRequest requestWithURL:url]];
    }
    - (void)dealloc
    {
        [webview release];
        [super dealloc];
    }
    @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently got a phone call from Apple saying they would reject our app
According to Apple's documentation on the View Controller Lifecycle I noticed the following regarding
According to Apple's description, the aurioTouch sample app is suppose to get the audio
According to http://lipas.uwasa.fi/~ts/info/proctips.html#orrules , you can make basic or rules in .procmailrc with something
According to Apple's docs, Subclasses need not override -[UIView drawRect:] if the subclass is
According to Apple's guide line, an iPhone app's launch image/splash screen should be a
According to Apple's documentation here , this should work in my code: @interface Menu
I'm trying to use CGBitmapContextCreate . According to Apple's documentation the ApplicationServices framework is
According to Apple documentation on debugging Core Data it says we should be able
According to Apple's documentation , @font-face is deprecated for use on the iPhone version

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.