gpt4 book ai didi

ios - 如何在Cocos 2D-X中的外部浏览器中打开链接

转载 作者:行者123 更新时间:2023-12-01 19:00:13 24 4
gpt4 key购买 nike

我正在打开cocos 2d-x(在以前的版本中)的链接,例如:

CCApplication::sharedApplication()->openUrl("http://www.google.com");

此链接的帮助:
https://github.com/cocos2d/cocos2d-x/pull/4893/files

但是在新版本中,openUrl已不存在。

那么,如何现在以新版本打开链接?

最佳答案

您专门针对哪个操作系统,
您可以尝试为iOS编写Obj-C代码并将其放入

#ifdef (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)    NSURL *url = [NSURL URLWithString:@""];      [[UIApplication sharedApplication] openURL:url];    #endif

and add complier flag obj-c and c++ on source file

Similarly, on android you can make JNI call(Java Code)

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("<link>"));
startActivity(browserIntent);

关于如何从cocos2d-x调用jni
http://purplelilgirl.tumblr.com/post/54583532324/code-bit-how-to-use-jni-in-cocos2dx-android

引自
How can I open a URL in Android's web browser from my application?

关于ios - 如何在Cocos 2D-X中的外部浏览器中打开链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23366728/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com