我是开发新手。我收到有关“预期类型”错误的错误。在我的应用程序的两个类中,我在一个类中声明了该方法,在另一个类中我在 @protocol 方法的帮助下使用了该方法。如何解决它。两个类 DayButton.h 和 DDCalenderView.h 中DayButton.h
,我声明为
@protocol DayButtonDelegate <NSObject>
-(void)dayButtonPressed:(id)sender;
@end
在中DDCalenderView.h
,我写道
@protocol DDCalenderViewDelegate<NSObject>
-(void)dayButtonPressed:(DayButton *)button;
在 void 方法附近出现异常DDCalenderView.h