使用LLVM Compiler 2.0时,我似乎遇到了一个新错误,我以前没有这个错误。
我有一个名为DTGridViewDelegate的协议定义为:
@protocol DTGridViewDelegate <UIScrollViewDelegate>
我有一个名为delegate
on DTGridView的属性(UIScrollView的子类,它本身具有delegate
属性)。这被定义为:
@property (nonatomic, assign) IBOutlet id<DTGridViewDelegate> delegate;
现在我收到的消息是:
DTGridView.h:116:63: error: property type 'id<DTGridViewDelegate>' is incompatible with type 'id<UIScrollViewDelegate>' inherited from 'UIScrollView'
因为我曾说过DTGridViewDelegate符合UIScrollViewDelegate,我认为以这种方式覆盖这个属性是可以的,事实上这是第一个提示存在问题的编译器。
我通过声明属性来修复错误:
@property (nonatomic, assign) IBOutlet id<DTGridViewDelegate, UIScrollViewDelegate> delegate;
我想知道这是否是编译器问题?
答案 0 :(得分:8)
您的设置与从UIScrollView继承的UITableView的情况相同。 UITableViewDelegate协议继承自UIScrollViewDelegate协议。
我设置了以下编译好的:
// .h
@protocol ParentClassDelegate
-(NSString *) aDelegateMethod;
@end
@interface ParentClass : NSObject {
id delegate;
}
@property(nonatomic, assign) IBOutlet id <ParentClassDelegate> delegate;
@end
//.m
@implementation ParentClass
@synthesize delegate;
-(id) delegate{
return @"Parent delegate";
}//-------------------------------------(id) delegate------------------------------------
-(void) setDelegate:(id)someObj{
delegate=someObj;
}//-------------------------------------(id) setDelegate------------------------------------
@end
//.h
@protocol ChildClassDelegate <ParentClassDelegate>
-(NSArray *) anotherDelegateMethod;
@end
@interface ChildClass : ParentClass{
}
@property(nonatomic, retain) IBOutlet id <ChildClassDelegate> delegate;
@end
//.m
@implementation ChildClass
//@synthesize delegate;
-(id) delegate{
return @"childDelegate";
}//-------------------------------------(id) delegate------------------------------------
-(void) setDelegate:(id)someObj{
delegate=someObj;
}//-------------------------------------(id) setDelegate------------------------------------
@end
不确定导致问题的原因。我会注意到在UTableViewDelegate协议的标题中看起来像:
@protocol UITableViewDelegate<NSObject, UIScrollViewDelegate>
...所以也许编译器有时会更清楚地看待事情。
我建议干净整洁。这解决了很多问题。
答案 1 :(得分:5)
由于没有正式的Objective-C语言规范,因此无法确定编译器是否正常运行。我们可以说的是,Apple的gcc似乎没有上述场景的问题,尽管它在概念上不合理,因为它可能会中断Liskov substitution,因为delegate
是来自covariant {{3}} 1}}到UIScrollView
(虽然协方差也是一个问题)。如果您将DTGridView
传递给期望DTGridView
的代码,然后将UIScrollView
设置为符合delegate
但不符合UIScrollViewDelegate
的对象,会发生什么情况?