“不兼容的指针...”关于将委托分配给自己的警告

发布于 2024-12-08 08:58:12 字数 679 浏览 0 评论 0原文

我有一个 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

现在在其他一些类中,我实例化此 CustomTV 并将委托设置为 self:

    CustomTV *tbl = [[CustomTV alloc] initWithFrame:CGRectMake(0, 0, 200, 400) style:UITableViewStylePlain];
    tbl.del = self;

为什么我会收到“不兼容的指针...”警告 <代码>tbl.del = self?

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

I have a custom subclass of UITableView with a protocol defined in it as below:

#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

Now in some other class, I instantiate this CustomTV and set the delegate to self:

    CustomTV *tbl = [[CustomTV alloc] initWithFrame:CGRectMake(0, 0, 200, 400) style:UITableViewStylePlain];
    tbl.del = self;

Why do I get an "Incompatible pointer..." warning on the line tbl.del = self ?

I did conform to the CustomDelegate protocol in the header.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉殇 2024-12-15 08:58:12

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

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

You are declaring the delegate as a pointer to a pointer to an object. The type id is already declared as a pointer to an object so remove the star.

@interface CustomTV : UITableView <UITableViewDelegate, UITableViewDataSource>{  
    id<CustomDelegate> del;
}
@property (nonatomic, assign)    id<CustomDelegate> del;
@end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文