Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有允许普通 C 枚举在 Xcode 中工作的构建设置?请不要告诉我使用 typedef 技术。我需要直接使用老式枚举。我有一个遗留项目可以很好地使用它们,但是当我将类导入新项目时,它会抛出错误,说我的枚举未定义。
我使用一个简单的 Global.h 将它们包含在所有抱怨的类中。我的实现非常基本:
enum { state1, state2 };
线索?
已经有一段时间了,我的 iPad 上没有 ac 编译器来测试它,但请尝试:
enum states { state1, state2 };