我有一个UITableView的自定义子类,其中定义了一个协议,如下所示:

#import <UIKit/UIKit.h>

@protocol CustomDelegate <NSObject>
@optional
-(NSInteger)numberOfRows;
@end

@interface CustomTV : UITableView <UITableViewDelegate, UITableViewDataSource>{
    id<CustomDelegate> *del;
}
@property (nonatomic, assign)    id<CustomDelegate> *del;
@end

现在在其他 class 中,我实例化此CustomTV并将委托设置为self:
    CustomTV *tbl = [[CustomTV alloc] initWithFrame:CGRectMake(0, 0, 200, 400) style:UITableViewStylePlain];
    tbl.del = self;

为什么在tbl.del = self行上收到“不兼容的指针...”警告?

我确实符合标头中的CustomDelegate协议。

最佳答案

您正在将委托声明为指向对象的指针。 id类型已经声明为指向对象的指针,因此请删除星号。

@interface CustomTV : UITableView <UITableViewDelegate, UITableViewDataSource>{
    id<CustomDelegate> del;
}
@property (nonatomic, assign)    id<CustomDelegate> del;
@end

07-26 09:40