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:#########"]];
我覺得空間也是一個問題。 – Rob 2012-06-27 00:40:54