我正在使用一个名为 UIBubbleTableView 的自定义 UITableView。
在我正在设置的视图控制器中,UIBubbleTableView
一切正常。然而,我正在尝试实现延迟加载,所以我需要知道哪些单元格是可见的。不幸的是,我无法访问 UIBubbleTableView 的 UITableView 委托方法。我试着环顾 StackOverflow,我读到链接代表是个好主意。所以我正在创建一个代表UIBubbleTableView.h
但是,当我放入
@property (nonatomic, weak) id<UIBubbleTableViewDelegate> delegate;
我有
Property type 'id<UIBubbleTableViewDelegate>' is incompatible with type 'id<UITableViewDelegate>' inherited from 'UITableView'
链接代表真的是最好的方法还是有另一种解决方案。我考虑过使用 NSNotification,但我猜这会对性能产生影响。
谢谢!