I am stuck in my project. I defined a property with type NSUInteger, for example:
@property NSUInteger maxDepth
It doesn't matter if this property is created (assign) or not, Xcode keeps asking me
Unknown type name 'NSUInteger'; did you mean 'NSUInteger'?
I cannot build, and it does not matter where and how I define the NSUInteger property, I just keep getting this error. My project uses the LLVM 3.0 compiler and ARC, so switching to GCC4.2 is not an option for me.
Thanks in advance!
source share