Cell工厂设计

作者: anyurchao | 来源:发表于2017-03-09 11:09 被阅读30次

Cell工厂设计

关于一个Cell工厂设计模式的 Demo

  • Model层
  • .首先建立 BaseModel并继承他建立OneModel,TwoModel,ThreeModel
  • 在BaseModel中声明实现方法,根据传过来的数据源(字典)判断,并且进行对应Model映射
    关键代码BaseModel
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>


@interface BaseModel : NSObject

//根据传过来的数据源(字典)判断,并且进行对应Model映射
+(instancetype)modelWithDictionary:(NSDictionary *)dic;

@end

#import "BaseModel.h"
#import "OneModel.h"
#import "TwoModel.h"
#import "ThreeModel.h"

@implementation BaseModel

//根据传过来的数据源(字典)判断,并且进行对应Model映射
+(instancetype)modelWithDictionary:(NSDictionary *)dic {

    BaseModel *model = nil;
    
    if ([dic[@"tag"] isEqualToString:@"Top News"]) {
        
        model = [OneModel new];
        
    }else if ([dic[@"tag"] isEqualToString:@"imgextra"]){
        
        model = [TwoModel new];
    
    }else if ([dic[@"tag"] isEqualToString:@"music"]){
        
        model = [ThreeModel new];
    
    }

    //字典对Model赋值
    [model setValuesForKeysWithDictionary:dic];

    return model;
}

  • View 层
  • 首先建立 BaseCell并继承他建立OneModelCell,TwoModelCell,ThreeModelCell
  • 在 BaseCell 中声明实现方法cellWithModel:根据Model返回对应的Cell,cellHeightWithModel:跟根据模型返回cell的高度
  • 在OneModelCell,TwoModelCell,ThreeModelCell中重写他的方法cellHeightWithModel:并通过 setModel: 方法对其进行赋值

关键代码BaseCell

#import <UIKit/UIKit.h>
@class BaseModel;

@interface BaseCell : UITableViewCell
@property (nonatomic, strong)BaseModel * model;
//简单工厂
//根据Model返回对应的Cell
+(instancetype)cellWithModel:(BaseModel *)model;
//返回cell的高度
+(CGFloat)cellHeightWithModel:(BaseModel *)baseModel;

@end

#import "BaseCell.h"
#import "BaseModel.h"
#import <objc/runtime.h>

@implementation BaseCell

//简单工厂
//根据Model返回对应的Cell
+(instancetype)cellWithModel:(BaseModel *)model {

    NSString *modelName = [NSString stringWithUTF8String:object_getClassName(model)];
    NSString *cellName = [NSString stringWithFormat:@"%@Cell",modelName];
    BaseCell *cell = [[objc_getClass(cellName.UTF8String) alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellName];
    
    return cell;
    
}
//返回cell的高度
+(CGFloat)cellHeightWithModel:(BaseModel *)baseModel{

    NSString *modelName = [NSString stringWithUTF8String:object_getClassName(baseModel)];
    NSString *cellName = [NSString stringWithFormat:@"%@Cell",modelName];
    
    return [objc_getClass(cellName.UTF8String) cellHeightWithModel:baseModel];

}

@end

  • Controller层
  • 数据请求并传给BaseModel,baseMode 通过modelWithDictionary:对Model映射
    *通过当前模型类名获取冲泳池中的 cell,若为空则根据Model返回对应的Cell
  • 根据 model 返回cell的高度
    关键代码RootTableViewController
#import "RootTableViewController.h"
#import "BaseModel.h"
#import "BaseCell.h"

@interface RootTableViewController ()
@property (nonatomic,strong)NSMutableArray *dataArray;
@end

@implementation RootTableViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    NSArray *array = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"]];
    
    for (NSDictionary *dic  in array) {
        
        BaseModel *model = [BaseModel modelWithDictionary:dic];
        [self.dataArray addObject:model];
    }
    
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return self.dataArray.count;
    
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    BaseModel *model = self.dataArray[indexPath.row];
    BaseCell *cell = [tableView dequeueReusableCellWithIdentifier:[NSString stringWithUTF8String:object_getClassName(model)]];
    
    if (nil == cell){
        cell = [BaseCell cellWithModel:model];
    }
    cell.model = model;
    
    return cell;
    
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

    BaseModel *model = self.dataArray[indexPath.row];
    return [BaseCell cellHeightWithModel:model];
    
}

#pragma mark- =====================getter method===================== 

- (NSMutableArray *)dataArray {

    if (!_dataArray){
    
        _dataArray = [[NSMutableArray alloc] initWithCapacity:10];
    }
    return _dataArray;
}

@end

祭出 Demo

另外我想说,如果学习不是为了装逼,那将毫无意义!

另外.....

我的愿望是.......

世界和平.........

相关文章

  • Cell工厂设计

    Cell工厂设计 关于一个Cell工厂设计模式的 Demo Model层 .首先建立 BaseModel并继承他建...

  • 点击cell上的button如何获取tableView

    这种方法主要用于工厂cell

  • 工厂模式,Cell工厂实例

    摘要: 工厂模式 也称为 虚拟构造 ,在基类中定义创建对象接口,让子类决定实例化哪个类;工厂方法让一个类的实例化延...

  • 2021-11-16 - 学习记录

    设计模式学习:创建型:工厂(工厂方法,抽象工厂),建造者,单例,原型 设计模式:工厂模式 简单工厂 工厂方法 抽象工厂

  • 设计模式之工厂模式

    设计模式之工厂模式 标签(空格分隔): 设计模式 工厂模式 设计模式的感念 设计模式的应用 工厂设计模式的产生 工...

  • 设计模式四、抽象工厂模式

    系列传送门设计模式一、单例模式设计模式二、简单工厂模式设计模式三、工厂模式设计模式四、抽象工厂模式 抽象工厂模式 ...

  • 单件设计模式

    一、定义 设计模式 设计模式就是一种更好的编写代码方案。 常见设计模式 工厂设计模式、抽象工厂设计模式、抽象工厂设...

  • 设计模式三、工厂模式

    系列传送门设计模式一、单例模式设计模式二、简单工厂模式设计模式三、工厂模式设计模式四、抽象工厂模式 工厂模式 在一...

  • 工厂模式

    java设计模式-工厂模式 工厂模式: 工厂模式是java设计模式里最常用的设计模式之一。 工厂模式属于创建型模式...

  • UITableView上的cell自动收缩

    设计了个小demo,显示时,cell为一行,当单击某个cell时,cell会展开,再次单击,则cell收回。该方法...

网友评论

    本文标题:Cell工厂设计

    本文链接:https://www.haomeiwen.com/subject/pudwgttx.html