我正在使用C ++ Builder进行应用程序编程。我想知道如何在Safari中的Ios设备上打开URL(只需单击按钮)。如果有人对此有一个答案,那就太好了。

最佳答案

你可以做

[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://www.google.com"]];


有关更多详细信息,请检查UIApplication Class Reference

10-08 12:05