学习iOS技术UIiOS

iOS - UITableview代理方法与Viewcontro

2015-12-30  本文已影响2369人  Resory


在objcio.cn中有一篇文章更轻量的 View Controllers.其中有一小节,是说把UITableview的datasource和delegate分离出Viewcontroller的。我也试着实现了一下,随便把思路总结下~

DEMO


建议先下载demo,再结合下面的分析,会好理解点。地址https://github.com/Resory/RYDatasource

逻辑


实现


// Viewcontroller.m
@property (nonatomic, strong) NSMutableArray *serverData;       // 服务器返回的数据
@property (nonatomic, strong) NSMutableArray *cellIdentifiers;  // cell样式标示
@property (nonatomic, strong) TDatasource *datasource;          // 中间人
数据
// Viewcontroller.m  
- (void)configData
{
    // 服务器返回的数据
    _serverData = [[NSMutableArray alloc] init];
    // 实体设置
    TModelOne *one = [[TModelOne alloc] init];
    TModelOne *two = [[TModelOne alloc] init];
    
    one.name = @"奇犽";
    one.imageName = @"001.jpg";
    
    two.name = @"拿尼加";
    two.imageName = @"002.jgp";
    
    [_serverData addObject:one];
    [_serverData addObject:two];
}
复用
// Viewcontroller.m  
- (void)configIdentifier
{
    // cell复用设置
    _cellIdentifiers = [[NSMutableArray alloc] init];
    [_cellIdentifiers addObject:NSStringFromClass([TCellOne class])];
    [_tableview registerNib:[TCellOne nib] forCellReuseIdentifier:_cellIdentifiers[0]];
}
初始化"中间人"
// Viewcontroller.m  
- (void)configDataSource
{
    // cell数据
    [self configData];
    
    // cell复用
    [self configIdentifier];
    
    // cell事件
    RYCellSelectedBlock cellSelectedBlock = ^(id obj){
        // cell点击事件
        [self cellSelectedWithObj:obj];
    };
    
    // 初始化dataSource
    _datasource = [[TDatasource alloc] initWithServerData:_serverData
                                       andCellIdentifiers:_cellIdentifiers];
    _datasource.cellSelectedBlock = cellSelectedBlock;
}
// Viewcontroller.m  
- (void)configTableView
{
    // 把_dataSource设置成_tableview的代理,以后所有代理方法都在_dataSource实现
    _tableview.delegate = _datasource;
    _tableview.dataSource = _datasource;
    _tableview.tableFooterView = [UIView new];
}

// TDatasource.m

- (id)initWithServerData:(NSArray *)serverData
      andCellIdentifiers:(NSArray *)identifiers
{
    self = [super init];
    if(self)
    {
        self.serverData = serverData;           // 数据
        self.cellIdentifiers = identifiers;     // 复用
    }
    
    return self;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:self.cellIdentifiers[0]
                                                            forIndexPath:indexPath];
    // cell的数据填充(cell的category方法)
    [cell configCellWithEntity:self.serverData[indexPath.row]];
    
    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 80.0;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // cell点击事件
    self.cellSelectedBlock(indexPath);
}


#import "TCellOne.h"
#import "TModelOne.h"

@implementation TCellOne

- (void)awakeFromNib {
    // Initialization code
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

- (void)configCellWithEntity:(id)entity
{
    if(entity)
    {
        TModelOne *model = entity;
        self.name.text = model.name;
        self.avartar.image = [UIImage imageNamed:model.imageName];
    }
}
奇犽~.png

最后


上一篇 下一篇

猜你喜欢

热点阅读