如何在 TableViewCell 中创建子表视图

2024-04-23

我有一个显示域列表的 TableView:

- (void)viewDidLoad
{
    [super viewDidLoad];
// Do any additional setup after loading the view.
    self.tableView.dataSource = mainClass.domainList;
}

域列表的设置如下:

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [self.domainList count];
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [[UITableViewCell alloc] init];
    cell.textLabel.text = [[self.domainList objectAtIndex:indexPath.row] name];

    return cell;
}

这工作得很好,它在我的表视图的一行中显示每个域。

现在我想在表视图的每个单元格中添加一个“子表视图”以显示与域相关的文档列表。 我尝试过:

 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableView *table = [[UITableView alloc] init];
    table.dataSource = [self.domainList objectAtIndex:indexPath.row];

    UITableViewCell *cell = [[UITableViewCell alloc] init];
    cell.textLabel.text = [[self.domainList objectAtIndex:indexPath.row] name];
    [cell.contentView addSubView table]

    return cell;
}

它不会崩溃,但也不起作用。我的意思是子列表没有出现在任何地方。 我究竟做错了什么?


datasource必须是实现协议的类UITableViewDataSource。看起来您正在将其设置为自定义对象。使用用于实现第一个表的代码创建一个单独的类,然后将子列表设置为源数据。在 objc.io 文章中“干净的表视图代码 http://www.objc.io/issue-1/table-views.html”他们解释了如何创建可重用的数据源。或者您也可以自己尝试一下。

考虑这段代码:

// ARRAYDATASOURCE.H

#import <Foundation/Foundation.h>

typedef void (^TableViewCellConfigureBlock)(id cell, id item);

@interface ArrayDataSource : NSObject <UITableViewDataSource>

-(id) init __attribute__((unavailable("disabled, try initWithItems:cellIdentifier:configureCellBlock")));

- (id) initWithItems:(NSArray *)anItems
      cellIdentifier:(NSString *)aCellIdentifier
  configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock;

- (id)itemAtIndexPath:(NSIndexPath *)indexPath;

@end


// ARRAYDATASOURCE.M

#import "ArrayDataSource.h"

@interface ArrayDataSource ()
@property (nonatomic, strong) NSArray *items;
@property (nonatomic, copy) NSString *cellIdentifier;
@property (nonatomic, copy) TableViewCellConfigureBlock configureCellBlock;
@end

@implementation ArrayDataSource

- (id)initWithItems:(NSArray *)anItems
     cellIdentifier:(NSString *)aCellIdentifier
 configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock
{
    self = [super init];
    if (self) {
        self.items = anItems;
        self.cellIdentifier = aCellIdentifier;
        self.configureCellBlock = [aConfigureCellBlock copy];
    }
    return self;
}

- (id)itemAtIndexPath:(NSIndexPath *)indexPath
{
    return self.items[(NSUInteger) indexPath.row];
}

#pragma mark UITableViewDataSource

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.items.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:self.cellIdentifier
                                                            forIndexPath:indexPath];
    id item = [self itemAtIndexPath:indexPath];
    self.configureCellBlock(cell, item);
    return cell;
}

@end
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何在 TableViewCell 中创建子表视图 的相关文章

随机推荐