[[UIApplication sharedApplication] openURL:[NSUR URLWithString:@"tel:135......"]];
上面的方法不会询问用户,直接进入拨打电话界面,
下面介绍的方法会有提示框,并且拨打结束后回到应用界面
NSString* strTel = [NSString stringWithFormat:@"tel:%@", phoneNumber];
UIWebView* view = [[UIWebView alloc] init];
[view loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:strTel]]];
[self addSubview:view];