这是一个非常愚蠢的错误,我敢肯定,但我找不到它。
我发现的主要是一个人忘记了#import
一行。
我没有。我对objective-c很陌生,并且尝试过协议,但我现在有8个错误......
我很确定这是协议,因为我的协议中有2个错误,所有其他错误都说“可以” t find protocol definition' 我认为是由协议中的错误引起的。
这是代码:
#import <UIKit/UIKit.h>
#import "CongTile.h"
@protocol TileDelegate
- (UIColor *)colorForTile:(CongTile *)tile; // Expected ')' before 'CongTile'
- (BOOL) drawArmyOnTile:(CongTile *)tile; // same error
@end