0
我需要打電話號碼+91(號碼),但如果我使用tel:// url它不從iPhone應用程序撥打電話。 如何撥打任何格式的電話號碼。需要幫助openURL:[NSURL URLWithString:@「tel:+91(number)」]]從iPhone應用程序
我需要打電話號碼+91(號碼),但如果我使用tel:// url它不從iPhone應用程序撥打電話。 如何撥打任何格式的電話號碼。需要幫助openURL:[NSURL URLWithString:@「tel:+91(number)」]]從iPhone應用程序
iphone將使用下面列出的任一格式撥打號碼。
[[UIApplication sharedApplication]
openURL:[NSURL URLWithString:@"tel://15415551234"]];
[[UIApplication sharedApplication]
openURL:[NSURL URLWithString:@"tel:15415551234"]];
[[UIApplication sharedApplication]
openURL:[NSURL URLWithString:@"tel:1-541-555-1234"]];