2012-01-03 75 views
2

我正在尋找來自我的應用程序撥打電話的一點幫助。電話號碼格式爲(###)### - ####。從應用程序撥打帶格式號碼的電話號碼

在我.h我有這樣的:

IBOutlet UITextView *PhoneNumber; 

在我.m我嘗試這些:

- (IBAction)callPhone:(id)sender 

    [[UIApplication sharedApplication] openURL: 
    [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",PhoneNumber.text]]]; 

我不能讓它撥出號碼。但是,當我嘗試這個工作。

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:#########"]]; 

回答

0

this網站,破折號應該沒問題。只要刪除括號。

+0

我覺得空間也是一個問題。 – Rob 2012-06-27 00:40:54