gpt4 book ai didi

c++ - 调用不可用函数 'system' : not available on iOS

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:50:44 35 4
gpt4 key购买 nike

我是 cocos2d-x 的新手,在编译我的项目时遇到这个错误。

Call to unavailable function 'system': not available on iOS

我看到这个调用不再适用,但是我可以用什么来代替它?任何见解将不胜感激!

bool FileUtils::removeDirectory(const std::string& path)
{
#if !defined(CC_TARGET_OS_TVOS)
std::string command = "rm -r ";
// Path may include space.
command += "\"" + path + "\"";
if (system(command.c_str()) >= 0) /*System Call Error/Not Availible*/
return true;
else
return false;
#else
return false;
#endif
}

最佳答案

system 功能在 iOS 11 上不可用,有一个可接受的 PR对于同一问题。

现在我们使用 nftw 而不是 system。使用 cocos2d-x 存储库的 v3 分支更新您的源代码。

关于c++ - 调用不可用函数 'system' : not available on iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45420717/

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