Swift 版本请移步这里
ZHTableViewGroup
为 UITableView
和 UICollectionView
而生
ZHTableViewDataSource *dataSource = [[ZHTableViewDataSource alloc] initWithTableView:self.tableView];
[dataSource clearData];
[dataSource addGroupWithCompletionHandle:^(ZHTableViewGroup * _Nonnull group) {
[group addCellWithCompletionHandle:^(ZHTableViewCell *tableViewCell) {
tableViewCell.anyClass = [UITableViewCell class];
tableViewCell.identifier = @"UITableViewCell";
NSArray<NSString *> *titles = @[@"刷新高度",@"刷新Cell",@"刷新数据",@"显示和隐藏"];
tableViewCell.cellNumber = titles.count;
[tableViewCell setConfigCompletionHandle:^(UITableViewCell *cell, NSIndexPath *indexPath) {
cell.textLabel.text = titles[indexPath.row];
}];
}];
}];
[dataSource reloadTableViewData];
[self.tableViewDataSource clearData];
[self.tableViewDataSource addGroupWithCompletionHandle:^(ZHTableViewGroup *group) {
[group addCellWithCompletionHandle:^(ZHTableViewCell<ReloadHeightCell1 *> *cell) {
self->_weakCell = cell;
cell.anyClass = [ReloadHeightCell1 class];
cell.identifier = @"ReloadHeightCell1";
[cell setConfigCompletionHandle:^(ReloadHeightCell1 *cell1, NSIndexPath *indexPath) {
cell1.textLabel.text = @"ReloadHeightCell1";
}];
}];
}];
[self.tableViewDataSource addGroupWithCompletionHandle:^(ZHTableViewGroup *group) {
[group addCellWithCompletionHandle:^(ZHTableViewCell<ReloadHeightCell2 *> *cell) {
cell.anyClass = [ReloadHeightCell2 class];
cell.identifier = @"ReloadHeightCell2";
cell.cellNumber = 2;
[cell setConfigCompletionHandle:^(ReloadHeightCell2 *cell1, NSIndexPath *indexPath) {
cell1.textLabel.text = @"ReloadHeightCell2";
}];
}];
}];
[self.tableViewDataSource reloadTableViewData];
[self.tableViewDataSource reloadCellAutomaticHeightWithIdentifier:@"ReloadHeightCell1"]
[self.tableViewDataSource reloadCellFixedHeight:250 identifier:@"ReloadHeightCell1"]
[self.tableViewDataSource reloadCellAutomaticHeightWithClass:NSClassFromString(@"ReloadHeightCell1")]
[self.tableViewDataSource reloadCellFixedHeight:260 className:NSClassFromString(@"ReloadHeightCell1")]
[self.tableViewDataSource reloadCellAutomaticHeightWithTableViewCell:self.tableViewDataSource.groups[0].cells[0]]
[self.tableViewDataSource reloadCellFixedHeight:270 tableViewCell:self.tableViewDataSource.groups[0].cells[0]]
[self.tableViewDataSource reloadCellAutomicHeightWithGroupIndex:1 cellIndex:0]
[self.tableViewDataSource reloadCellFixedHeight:280 groupIndex:1 cellIndex:0]
[self.tableViewDataSource clearData];
[self.tableViewDataSource addGroupWithCompletionHandle:^(ZHTableViewGroup *group) {
[group addCellWithCompletionHandle:^(ZHTableViewCell *cell) {
cell.anyClass = [UITableViewCell class];
cell.identifier = @"UITableViewCell";
[cell setConfigCompletionHandle:^(UITableViewCell *cell, NSIndexPath *indexPath) {
cell.textLabel.text = [@(random() % 99 + 1) stringValue];
}];
}];
}];
[self.tableViewDataSource reloadTableViewData];
[self.tableViewDataSource reloadCellWithIdentifier:@"UITableViewCell"]
[self.tableViewDataSource reloadCellWithClassName:[UITableViewCell class]]
[self.tableViewDataSource reloadCellWithTableViewCell:self.tableViewDataSource.groups[0].cells[0]]
[self.tableViewDataSource reloadCellWithGroupIndex:0 cellIndex:0]
_randoms = [NSMutableArray arrayWithArray:@[@"random"]];
[self.tableViewDataSource clearData];
[self.tableViewDataSource addGroupWithCompletionHandle:^(ZHTableViewGroup *group) {
[group addCellWithCompletionHandle:^(ZHTableViewCell *cell) {
cell.anyClass = [UITableViewCell class];
cell.identifier = @"UITableViewCell";
cell.cellNumber = _randoms.count;
[cell setConfigCompletionHandle:^(UITableViewCell *cell, NSIndexPath *indexPath) {
cell.textLabel.text = _randoms[indexPath.row];
}];
}];
}];
[self.tableViewDataSource reloadTableViewData];
[self.tableViewDataSource reloadCellWithDataCount:_randoms.count identifier:@"UITableViewCell"]
[self.tableViewDataSource reloadCellWithDataCount:_randoms.count className:[UITableViewCell class]]
[self.tableViewDataSource reloadCellWithDataCount:_randoms.count tableViewCell:self.tableViewDataSource.groups[0].cells[0]]
[self.tableViewDataSource reloadCellWithDataCount:_randoms.count groupIndex:0 cellIndex:0]
[self.tableViewDataSource clearData];
[self.tableViewDataSource addGroupWithCompletionHandle:^(ZHTableViewGroup *group) {
[group addCellWithCompletionHandle:^(ZHTableViewCell *cell) {
cell.anyClass = [UITableViewCell class];
cell.identifier = @"UITableViewCell";
cell.cellNumber = 10;
[cell setConfigCompletionHandle:^(UITableViewCell *cell, NSIndexPath *indexPath) {
cell.textLabel.text = [@(indexPath.row + 1) stringValue];
}];
[cell setHiddenBlock:^BOOL(NSIndexPath *indexPath) {
return _hidden && indexPath.row >= 5 && indexPath.row <= 8;
}];
}];
}];
[self.tableViewDataSource reloadTableViewData];
[self.tableViewDataSource reloadAllHiddenCell]
pod 'ZHTableViewGroup'
github "josercc/ZHTableViewGroup"
.package(url: "https://github.com/josercc/ZHTableViewGroup.git", from: "3.0.0")