在应用程序中,我需要启动手机应用程序。我不想像下面的代码那样立即拨打电话:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@\"tel://911\"]];
....只会拨打 911。我想知道我是否可以启动电话应用程序。我试过这段代码:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@\"tel://\"]];
但它不起作用
请帮我解决这个问题