0%

EFModalDialog/ListSelector_VC.h

Supporting Files/EFUIKit/EFModalDialog/ListSelector_VC.h

提供选项以列表展示的选择对话框,支持单选或者多选。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@property (weak, nonatomic, nullable) IBOutlet UITableView *tableView;
/**
是否单选。(Single selection or not.)
*/
@property (assign, nonatomic) BOOL singled;
/**
已选择的行 DataID,恢复选中状态。(For cell resume if cell selected.)
*/
@property (strong, nonatomic, nullable) NSNumber *selectedDataID;
/**
已选择的行 DataIDs,恢复选中状态。(For cells resume if cells selected.)
*/
@property (strong, nonatomic, nullable) NSArray *selectedDataIDs;
/**
列表选择器回调,多选时返回已选的 dataIDs和 dataNames,单选时: 元素基于 BaseDataModel的数据源返回 dataID和 dataName。(OK Callback handler for list selector, for multiple selection you will get 'dataIDs' and 'dataNames' that you selected, for single selection you will get 'dataID' and 'dataName' that you selected.)
*/
@property (strong, nonatomic, nonnull) void(^OKHandler)(NSArray *_Nonnull dataIDs, NSArray *_Nonnull dataNames);

相关

更新内容

  1. 结构调整,从核心框架移出。
  2. 不再支持元素基于 NSDictionary的数据源。
  3. 新增多行选择支持。
  4. 相关链接调整。
  5. 更新了描述内容。