我有一个使用 LibGDX 的安卓游戏。在其中,我有一些按钮可以通过以下方式在浏览器中打开 URL:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://myURL/"));
startActivity(intent);
这似乎工作正常......
问题是我正在尝试将游戏移植到带有 RoboVM 的 iOS 上运行,但不知道如何设置类似的东西。
使用 RoboVM 绑定,我假设我可能想要使用 openURL() 方法:
openURL (UIApplication application, NSURL url, String sourceApplication, NSObject annotation)
但除了 NSURL,我不知道我需要为其他 3 个参数传递什么。并且在网上找不到任何有关如何使用它的示例。