2014-02-12 118 views
-1

我想呼叫轉移在此代碼:呼叫轉移錯誤

NSString *phone [email protected]"**21*08150815#"; 
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",phone]]; 
[[UIApplication sharedApplication] openURL:url]; 

但不working.What是什麼問題?你可以幫我嗎?

回答

1

我認爲你需要一個 「//」 後 「:」

NSString *phone [email protected]"**21*08150815#"; 
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",phone]]; 
[[UIApplication sharedApplication] openURL:url]; 
+0

號['電話:'網址(https://developer.apple.com/library/ios/featuredarticles/ iPhoneURLScheme_Reference/PhoneLinks/PhoneLinks.html)不需要斜線。問題是,iOS的限制使用的OpenURL的到正規的電話號碼。你不能在他們使用的服務代碼。 –

+0

這個代碼不working.i使用這兩種技術,但使用SDK 7.0不worked.i米這樣的服務不來output.i米走在日誌中的所有數字,但真的不執行。 – AlimYldz