出现错误
@protocol TapDetectingImageViewDelegate;
@interface TapDetectingImageView : UIImageView {
id <TapDetectingImageViewDelegate> tapDelegate;
@property (nonatomic, assign) id <TapDetectingImageViewDelegate> tapDelegate;
@synthesize tapDelegate;
尝试了一切
_weak id <TapDetectingImageViewDelegate> tapDelegate;
@property (weak) id <TapDetectingImageViewDelegate> tapDelegate;
甚至也试过这个
_unsafe_unretained id <TapDetectingImageViewDelegate> tapDelegate;
@property (_unsafe_unretained) id <TapDetectingImageViewDelegate> tapDelegate;
甚至尝试在使用 ARC 模式时删除实例变量定义,因为 synthesize 会处理它。
但是仍然没有任何方法可以消除此错误。
如果有人可以帮我解决这个错误。
谢谢。