我想在此代码中呼叫转发:
NSString *phone =@"**21*08150815#";
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",phone]];
[[UIApplication sharedApplication] openURL:url];
但没有工作。问题是什么?你能救我吗?
答案 0 :(得分:1)
我认为在“:”
之后你需要一个“//”NSString *phone =@"**21*08150815#";
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",phone]];
[[UIApplication sharedApplication] openURL:url];