I’m stuck with my project.
I’ve defined a property with a NSUInteger type, like:
@property NSUInteger maxDepth
It doesn’t matter if I make it an (assign) property or not, Xcode keeps on asking me
Unknown type name 'NSUInteger'; did you mean 'NSUInteger'?
I can’t build, and it doesn’t matter where or how I define a NSUInteger property, I just keep getting this error.
My project uses the LLVM 3.0 compiler and ARC, So switching to GCC4.2 is no option for me.
Thanks in advance!
It seems that somehow my project’s prefix was corrupted. I’ve fixed it after noticing that the same errors were in a new project that imported my current code. Thanks for the help anyways. I’ll keep my eyes closer on that prefix file…