ฉันจะโทรศัพท์โดยใช้โปรแกรมบน iPhone ได้อย่างไร ฉันลองใช้รหัสต่อไปนี้ แต่ไม่มีอะไรเกิดขึ้น:
NSString *phoneNumber = mymobileNO.titleLabel.text;
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
ฉันจะโทรศัพท์โดยใช้โปรแกรมบน iPhone ได้อย่างไร ฉันลองใช้รหัสต่อไปนี้ แต่ไม่มีอะไรเกิดขึ้น:
NSString *phoneNumber = mymobileNO.titleLabel.text;
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
คำตอบ:
อาจเป็นไปได้ว่าค่าmymobileNO.titleLabel.textไม่มีแบบแผนtel: //
รหัสของคุณควรมีลักษณะเช่นนี้:
NSString *phoneNumber = [@"tel://" stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
ในการกลับไปที่แอปดั้งเดิมคุณสามารถใช้ telprompt: // แทน tel: // - การแจ้งเตือนคำสั่งจะแจ้งให้ผู้ใช้ทราบก่อน แต่เมื่อการโทรเสร็จสิ้นการโทรจะกลับไปที่แอปของคุณ:
NSString *phoneNumber = [@"telprompt://" stringByAppendingString:mymobileNO.titleLabel.text];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:phoneNumber]];
tel://
ไม่ได้telprompt://
การรวมคำตอบของ @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.
}
คำตอบที่นี่ทำงานได้อย่างสมบูรณ์ ฉันแค่แปลงคำตอบของเครกเมลลอนให้เป็นสวิฟท์ หากใครบางคนกำลังมองหาคำตอบที่รวดเร็วนี่จะช่วยพวกเขา
var phoneNumber: String = "telprompt://".stringByAppendingString(titleLabel.text!) // titleLabel.text has the phone number.
UIApplication.sharedApplication().openURL(NSURL(string:phoneNumber)!)
หากคุณใช้ Xamarin เพื่อพัฒนาแอปพลิเคชั่น iOS นี่คือ C # ที่เทียบเท่ากับการโทรภายในแอปพลิเคชันของคุณ:
string phoneNumber = "1231231234";
NSUrl url = new NSUrl(string.Format(@"telprompt://{0}", phoneNumber));
UIApplication.SharedApplication.OpenUrl(url);
สวิฟท์ 3
let phoneNumber: String = "tel://3124235234"
UIApplication.shared.openURL(URL(string: phoneNumber)!)
ใน 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")
}
}
Java RoboVM ที่เทียบเท่า:
public void dial(String number)
{
NSURL url = new NSURL("tel://" + number);
UIApplication.getSharedApplication().openURL(url);
}
ลองตัวเลือก Swift 3 ด้านบน แต่ไม่ได้ผล ฉันคิดว่าคุณจำเป็นต้องมีสิ่งต่อไปนี้หากคุณใช้ iOS 10+ บน Swift 3:
Swift 3 (iOS 10+):
let phoneNumber = mymobileNO.titleLabel.text
UIApplication.shared.open(URL(string: phoneNumber)!, options: [:], completionHandler: nil)
let phone = "tel://\("1234567890")";
let url:NSURL = NSURL(string:phone)!;
UIApplication.sharedApplication().openURL(url);
if let url = NSURL(string: "tel://\(number)"),
UIApplication.sharedApplication().canOpenURL(url) {
UIApplication.shared.open(url, options: [:], completionHandler: nil)
}
'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];