โทรออกโดยใช้โปรแกรม


138

ฉันจะโทรศัพท์โดยใช้โปรแกรมบน iPhone ได้อย่างไร ฉันลองใช้รหัสต่อไปนี้ แต่ไม่มีอะไรเกิดขึ้น:

NSString *phoneNumber = mymobileNO.titleLabel.text;
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];

2
สำหรับรหัสใน swift คุณสามารถทำตามคำตอบนี้ stackoverflow.com/a/29869456/3950397
Sahil Kapoor

คำตอบ:


189

อาจเป็นไปได้ว่าค่าmymobileNO.titleLabel.textไม่มีแบบแผนtel: //

รหัสของคุณควรมีลักษณะเช่นนี้:

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

3
ไม่มีโอกาสที่เราจะกลับไปที่แอปพลิเคชันดั้งเดิมด้วยวิธีนี้
Artem Oboturov

4
ฉันคิดว่าวิธีการของเมลลอนนั้นดีกว่าเพราะแจ้งให้ผู้ใช้ทราบก่อนแล้วจึงกลับไปที่แอพของคุณหลังจากการโทร เพียงตรวจสอบให้แน่ใจว่าใช้ canOpenURL: และย้อนกลับไปที่พรอมต์ tel: เนื่องจาก telprompt ไม่เป็นทางการและสามารถลบออกได้ในเวอร์ชัน iOS ในอนาคต
joel.d

ฉันจะโทรจาก apple watch ได้อย่างไร
Ahad Khan

1
ฉันสามารถเปิดลำโพงโดยใช้การตั้งโปรแกรมด้วยการโทรด้วยวิธีนี้ได้ไหม
uniruddh

แม้กระทั่งโทรศัพท์: 1234567890ยังทำงานเหมือนวิธีบอก: // 1234567890ทำงานได้
Durai Amuthan.H

218

ในการกลับไปที่แอปดั้งเดิมคุณสามารถใช้ telprompt: // แทน tel: // - การแจ้งเตือนคำสั่งจะแจ้งให้ผู้ใช้ทราบก่อน แต่เมื่อการโทรเสร็จสิ้นการโทรจะกลับไปที่แอปของคุณ:

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

9
ฉันมีคำถาม: แอปที่ใช้ telprompt: // ถูกปฏิเสธโดย Apple หรือไม่
Smeegol

7
ฉันรู้ว่านี่เก่า แต่ฉันพบคนสองสามคนที่อ้างว่าแอปของพวกเขาได้รับการอนุมัติโดยใช้ telprompt: "ฉันส่งแอปของฉันที่ใช้ telprompt กับแอปพลิเคชันที่ใช้ร่วมกันโดยไม่ต้อง uiwebkit และผ่านการอนุมัติจาก Apple เรียบร้อยแล้ว Alejandro Junge "
Mark McCorkle

1
telprompt: // ไม่มีเอกสารดังนั้นจึงไม่ควรเชื่อถือ สิ่งต่าง ๆ อาจมีการเปลี่ยนแปลงตัวอย่างเช่น Apple สามารถตัดสินใจเลือกรูปแบบ URL ที่กำหนดเป็นสิ่งที่พวกเขาต้องการโดยเฉพาะหรือไม่ต้องการอนุญาตจากนั้นแอปของคุณจะพัง
DevC

@DevC: ถ้าอย่างนั้นทางเลือกอื่นที่จะมีคุณสมบัติการโทรในแอพของเราคือ
BaSha

@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
    }
} 

สิ่งนี้จะพยายามใช้ URL "telprompt: //" ก่อนหากล้มเหลวจะใช้ URL "tel: //" หากทั้งสองล้มเหลวคุณกำลังพยายามโทรออกบน iPad หรือ iPod Touch

เวอร์ชั่นของ Swift:

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

คำตอบที่นี่ทำงานได้อย่างสมบูรณ์ ฉันแค่แปลงคำตอบของเครกเมลลอนให้เป็นสวิฟท์ หากใครบางคนกำลังมองหาคำตอบที่รวดเร็วนี่จะช่วยพวกเขา

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

คุณสามารถใช้ tel: // แทน telprompt: //
Shivaay

ให้ phoneNumber: String = "telprompt: // (titleLabel.text)" UIApplication.shared.openURL (URL (สตริง: phoneNumber)!)
tspentzas

8

หากคุณใช้ Xamarin เพื่อพัฒนาแอปพลิเคชั่น iOS นี่คือ C # ที่เทียบเท่ากับการโทรภายในแอปพลิเคชันของคุณ:

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


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 ด้านบน แต่ไม่ได้ผล ฉันคิดว่าคุณจำเป็นต้องมีสิ่งต่อไปนี้หากคุณใช้ iOS 10+ บน Swift 3:

Swift 3 (iOS 10+):

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



0

'openURL:' เลิกใช้แล้ว: เลิกใช้ครั้งแรกใน iOS 10.0 - โปรดใช้ openURL: ตัวเลือก: completeHandler: แทนที่จะเป็น

ในการใช้งาน Objective-c iOS 10+:

NSString *phoneNumber = [@"tel://" stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber] options:@{} completionHandler:nil];
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.