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.
我有一个项目,我正在使用来自 aurioTouch 示例项目的一些代码。出于某种原因,任何具有 SInt8 类型的行都会不断给我一个“解析问题:未知类型 SInt8”错误。我不知道是什么原因造成的,因为这应该内置在 iPhone SDK 中。
有什么我可能忽略的可能导致这个问题的东西吗?提前致谢。
SInt8 是 CoreFoundation 的一部分。你必须
#include <CoreFoundation/CoreFoundation.h>
访问它,以及 UInt8、SInt16、UInt16 等。