프로그래밍 방식으로 전화 걸기


138

iPhone에서 프로그래밍 방식으로 전화를 걸려면 어떻게해야합니까? 다음 코드를 시도했지만 아무 일도 일어나지 않았습니다.

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

2
신속한 코드를 보려면 다음 답변을 따르십시오. 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
Mellon의 접근 방식은 사용자에게 먼저 메시지를 표시 한 다음 통화 후 앱으로 돌아 오는 것이 더 좋습니다. telprompt는 공식이 아니며 향후 iOS 버전에서 제거 될 수 있으므로 canOpenURL :을 사용하고 tel : 프롬프트로 대체하십시오.
joel.d

Apple Watch에서 전화를 걸려면 어떻게해야합니까?
아 하드 칸

1
iOS에서 이러한 방식으로 발신 된 통화에 대해 프로그래밍 방식으로 스피커를 켤 수 있습니까?
uniruddh

심지어 전화 : 1234567890 또한 얼마나처럼 작동 말씀 : // 1234567890 작동
Durai Amuthan.H에게

218

원래 앱으로 돌아가려면 tel : // 대신 telprompt : //를 사용할 수 있습니다. tell prompt는 먼저 사용자에게 프롬프트하지만 전화가 끝나면 앱으로 돌아갑니다.

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

9
질문이 있습니다. telprompt : //를 사용하는 앱은 Apple에서 거부됩니까?
Smeegol

7
나는 이것이 오래되었다는 것을 알고 있지만 telprompt를 사용하여 자신의 앱이 승인되었다고 주장하는 두 사람을 발견했습니다. 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
    }
} 

먼저 "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)!)

telprompt : // 대신 tel : //을 사용할 수도 있습니다
Shivaay

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 이상을 실행하려면 다음이 필요하다고 생각합니다.

스위프트 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];
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.