I have a project where I’m using some code from the aurioTouch sample project. For some reason, any line with the SInt8 type keeps on giving me a “Parse Issue: Unknown type SInt8” error. I have no idea what’s causing this as this should be built into the iPhone SDK.
Is there something I may be overlooking that could cause this issue? Thanks in advance.
SInt8 is part of CoreFoundation. You have to
to get access to it, along with UInt8, SInt16, UInt16, etc.