NSString *phoneStr = @"tel:";
phoneStr = [phoneStr stringByAppendingFormat:@"%@" , self.ContactPhone];
NSURL * phoneURL = [NSURL URLWithString:phoneStr];
[[UIApplication sharedApplication] openURL:phoneURL];
此代码不起作用且无法打开电话应用程序,当我打印 phoneURL 的值时,它始终为 null
为什么会这样?
谢谢