我有一个名为“sellPhone”的变量。我想将它添加到 URLWithString 中。这样做的正确代码是什么?
- (IBAction)buttonCall:(id)sender {
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *sellPhone = [defaults objectForKey:@"sellPhone"];
[[UIApplication sharedApplication]
openURL:[NSURL URLWithString:@"tel:%",sellPhone]]; //something like this!!!
什么是正确的方法?谢谢!!!