可能重复:
找不到协议声明
这是 MyClass 中的代码:
@protocol todayUpdateDelegate <NSObject>
-(void) updateTodayTime;
@end
@interface MyClass : BaseViewController
@property (nonatomic, weak) id<todayUpdateDelegate> todayDelegate;
@end
这是在委托类中:
#import "MyClass.h"
@interface MyDelegateClass : UITableViewController<todayUpdateDelegate>
@end
我收到错误“找不到协议声明”