1

我刚刚运行了 Xcode 4.6 更新,现在我的项目无法编译。我不得不修复几个 C++ 错误,但我的一个 C++ 文件仍然得到这个Use of undeclared identifier 'arc4random'.

请注意,arc4random()在项目的其他地方工作得很好。(即使在其他 C++ 文件中!)

我尝试将其更改为arc4random_uniform(1),但这没有帮助。

谢谢阅读。

4

1 回答 1

3

你需要#include <stdlib.h>

于 2013-02-05T22:04:05.830 回答