0%

〈extreme.framework/EFBaseTableViewCell.h〉

extreme.framework/EFBaseTableViewCell.h〉

适用于简单的自定义单元格。添加了自定义的选择效果,一个绑定数据模型,以及一个自定义控件,可按需自由搭配使用。

一般[这是什么?]

2.0~

因 isSelected为 UITableViewCell既有属性读者,故原 isSelected更改为 cellSelected。

1
@property (assign, nonatomic, getter=isCellSelected) BOOL cellSelected;

1.5~[这是什么?]

1
2
3
4
@property (assign, nonatomic, nullable) id dataModel;

@property (weak, nonatomic, nullable) id control;
@property (weak, nonatomic, nullable) UIImageView *select_imageView;

[这是什么?]

1.5

isSelected 已弃用。

1
@property (assign, nonatomic) BOOL isSelected;

相关

更新内容

  1. 相关链接调整。
  2. 更新了描述内容。