我遵循了如何使用代码设置Objective C的教程:block(当然我也设置了gnu步骤http://www.gnustep.org/experience/Windows.html)http://wiki.codeblocks.org/index.php?title=Installing_Objective-C_Compiler
我尝试了一个简单的hello world它有效。但是当我尝试编译包含
的示例代码文件时#import <objc/Object.h>
@interface TestObject : Object
{
int internalInt;
}
- (int)add:(int)anInt;
- (int)subtract:(int)anInt;
- (int)value;
@end
我收到了这个错误
致命错误:objc / Object.h:没有这样的文件或目录|
那么我应该将什么添加到Code:Block设置才能真正起作用?