以编程方式拨打电话


Answers:


189

mymobileNO.titleLabel.text值可能不包含方案tel://

您的代码应如下所示:

NSString *phoneNumber = [@"tel://" stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];

3
用这种方法我们不可能回到原始的应用程序。
Artem Oboturov 2011年

4
我认为Mellon的方法更好,因为它首先提示用户,然后在通话后返回您的应用程序。只需确保使用canOpenURL:并回退到tel:提示符,因为telprompt不是官方的,可以在将来的iOS版本中删除。
joel.d 2014年

如何从Apple Watch拨打电话。
Ahad Khan 2015年

1
我可以以编程方式打开扬声器,以这种方式在ios中发起呼叫吗?
uniruddh '16

甚至tel:1234567890也可以像//:// 1234567890一样起作用
Durai Amuthan.H

218

要返回原始应用,您可以使用telprompt://而不是tel://-提示提示符将首先提示用户,但是当通话结束时,它将返回您的应用:

NSString *phoneNumber = [@"telprompt://" stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];

9
我有一个问题:使用telprompt://的应用会被苹果拒绝吗?
Smeegol 2012年

7
我知道这已经很老了,但我确实发现有几个人声称他们的应用程序已使用telprompt批准:“我提交的应用程序使用telprompt并与不带uiwebkit的共享应用程序一起使用,并且已经成功通过了Apple的批准。2013年1月19日回答Pablo亚历杭德罗·荣格(Alejandro Junge)
马克·麦考克

1
telprompt://没有记录,因此永远不要依赖。事情可能会发生变化,例如Apple可以确定给定的URL方案是他们唯一需要的,或者根本不希望允许的,那么您的应用程序将崩溃。
DevC 2014年

@DevC:那么在我们的应用程序中具有电话呼叫功能的替代方法是什么?
芭莎(BaSha)2015年

@BaSha使用tel://telprompt://
DEVC

24

合并@Cristian Radu和@Craig Mellon的答案以及@ joel.d的评论,您应该执行以下操作:

NSURL *urlOption1 = [NSURL URLWithString:[@"telprompt://" stringByAppendingString:phone]];
NSURL *urlOption2 = [NSURL URLWithString:[@"tel://" stringByAppendingString:phone]];
NSURL *targetURL = nil;

if ([UIApplication.sharedApplication canOpenURL:urlOption1]) {
    targetURL = urlOption1;
} else if ([UIApplication.sharedApplication canOpenURL:urlOption2]) {
    targetURL = urlOption2;
}

if (targetURL) {
    if (@available(iOS 10.0, *)) {
        [UIApplication.sharedApplication openURL:targetURL options:@{} completionHandler:nil];
    } else {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
        [UIApplication.sharedApplication openURL:targetURL];
#pragma clang diagnostic pop
    }
} 

这将首先尝试使用“ telprompt://” URL,如果失败,它将使用“ tel://” URL。如果两者均失败,则您尝试在iPad或iPod Touch上拨打电话。

迅捷版本:

let phone = mymobileNO.titleLabel.text
let phoneUrl = URL(string: "telprompt://\(phone)"
let phoneFallbackUrl = URL(string: "tel://\(phone)"
if(phoneUrl != nil && UIApplication.shared.canOpenUrl(phoneUrl!)) {
  UIApplication.shared.open(phoneUrl!, options:[String:Any]()) { (success) in
    if(!success) {
      // Show an error message: Failed opening the url
    }
  }
} else if(phoneFallbackUrl != nil && UIApplication.shared.canOpenUrl(phoneFallbackUrl!)) {
  UIApplication.shared.open(phoneFallbackUrl!, options:[String:Any]()) { (success) in
    if(!success) {
      // Show an error message: Failed opening the url
    }
  }
} else {
    // Show an error message: Your device can not do phone calls.
}

10

这里的答案是完美的工作。我只是将Craig Mellon的答案转换为Swift。如果有人来寻找快速答案,这将对他们有所帮助。

 var phoneNumber: String = "telprompt://".stringByAppendingString(titleLabel.text!) // titleLabel.text has the phone number.
        UIApplication.sharedApplication().openURL(NSURL(string:phoneNumber)!)

您还可以使用tel://代替telprompt://
Shivaay 2015年

let phoneNumber:String =“ telprompt://(titleLabel.text)” UIApplication.shared.openURL(URL(string:phoneNumber)!)
tspentzas

8

如果您使用Xamarin开发iOS应用程序,则在您的应用程序中拨打电话等效于C#:

string phoneNumber = "1231231234";
NSUrl url = new NSUrl(string.Format(@"telprompt://{0}", phoneNumber));
UIApplication.SharedApplication.OpenUrl(url);

6

迅捷3

let phoneNumber: String = "tel://3124235234"
UIApplication.shared.openURL(URL(string: phoneNumber)!)

4

在Swift 3.0中,

static func callToNumber(number:String) {

        let phoneFallback = "telprompt://\(number)"
        let fallbackURl = URL(string:phoneFallback)!

        let phone = "tel://\(number)"
        let url = URL(string:phone)!

        let shared = UIApplication.shared

        if(shared.canOpenURL(fallbackURl)){
            shared.openURL(fallbackURl)
        }else if (shared.canOpenURL(url)){
            shared.openURL(url)
        }else{
            print("unable to open url for call")
        }

    }

3

Java RoboVM等效项:

public void dial(String number)
{
  NSURL url = new NSURL("tel://" + number);
  UIApplication.getSharedApplication().openURL(url);
}

3

尝试了上面的Swift 3选项,但是没有用。如果要在Swift 3上针对iOS 10+运行,我认为您需要以下条件:

Swift 3(iOS 10以上):

let phoneNumber = mymobileNO.titleLabel.text       
UIApplication.shared.open(URL(string: phoneNumber)!, options: [:], completionHandler: nil)

1
let phone = "tel://\("1234567890")";
let url:NSURL = NSURL(string:phone)!;
UIApplication.sharedApplication().openURL(url);

1

迅速

if let url = NSURL(string: "tel://\(number)"), 
    UIApplication.sharedApplication().canOpenURL(url) {
        UIApplication.shared.open(url, options: [:], completionHandler: nil)
}

0

不建议使用“ openURL:”:在iOS 10.0中首先不建议使用-请改用openURL:options:completionHandler:

在Objective-c iOS 10+中使用:

NSString *phoneNumber = [@"tel://" stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber] options:@{} completionHandler:nil];
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.