作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我是开发新手。我收到有关“预期类型”错误的错误消息。在我的应用程序的两个类中,我在一个类中声明了该方法,在另一个类中我在@protocol 方法的帮助下使用了该方法.How to resolve it.两个类DayButton.h和DDCalenderView.h在 DayButton.h
中,我声明为
@protocol DayButtonDelegate <NSObject>
-(void)dayButtonPressed:(id)sender;
@end
在DDCalenderView.h
中,我写成
@protocol DDCalenderViewDelegate<NSObject>
-(void)dayButtonPressed:(DayButton *)button;
在 DDCalenderView.h
中获取接近 void 方法的异常
最佳答案
解决方案:将导入从实现移至头文件。 我认为在头文件中没有的实现文件中有一些导入。确保你有正确的导入。这是让您对自己摇头的那些小错误/错误之一。
关于ios - 如何解决ios中的 "Expected a type"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11094222/
我是一名优秀的程序员,十分优秀!