呼叫转移错误

时间:2014-02-12 09:15:54

标签: ios iphone objective-c

我想在此代码中呼叫转发:

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

但没有工作。问题是什么?你能救我吗?

1 个答案:

答案 0 :(得分:1)

我认为在“:”

之后你需要一个“//”
NSString *phone =@"**21*08150815#"; 
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",phone]];
[[UIApplication sharedApplication] openURL:url];