ios界面设计之自定义Cell

采用MVC设计模式

1.Model层设计

新建CJActive文件
CJActive.h文件中

@interface CJActive : NSObject
@property (nonatomic, copy) NSString *icon;
@property (nonatomic, copy) NSString *name;

-(instancetype)initWithDic:(NSDictionary *)dic;
+(instancetype)acitveWithDic:(NSDictionary *)dic;

+(NSMutableArray *)activeList;
@end

CJActive.m文件

-(instancetype)initWithDic:(NSDictionary *)dic{
    if (self = [super init]) {
        [self setValuesForKeysWithDictionary:dic];
    }
    return self;
}
+(instancetype)acitveWithDic:(NSDictionary *)dic{
    return [[self alloc]initWithDic:dic];
}
+(NSMutableArray *)activeList{
    NSArray *dicArray = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"apps.plist" ofType:nil]];
    //字典转模型
    NSMutableArray *arrayM = [NSMutableArray array];
    
    for (NSDictionary *dic in dicArray) {
        CJActive *active = [CJActive acitveWithDic:dic];
        [arrayM addObject:active];
    }
    return arrayM;

}

2.View层设计

新建CJActiveCell类文件,带xib的。
CJActiveCell.h文件中

@class CJActive;
@interface CJActiveCell : UITableViewCell
@property (nonatomic, strong) CJActive *getData;//定义一个接口,获得数据

+(instancetype) cellWithTableView:(UITableView *)tableView;
@end

CJActiveCell.xib文件中进行自定义cell设计
并且子控件关联至CJActiveCell.m中

@interface CJActiveCell()
@property (weak, nonatomic) IBOutlet UIImageView *icon;
@property (weak, nonatomic) IBOutlet UILabel *title;

@end

在CJActiveCell.m中实现两个方法

//创建cell
+(instancetype)cellWithTableView:(UITableView *)tableView{
    static NSString *reuseID= @"activeCell";
    //1.创建可重用的cell
    CJActiveCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseID];
    //2.判断为空,一开始初始化
    if (cell == nil) {
        cell = [[[NSBundle mainBundle]loadNibNamed:@"CJActiveCell" owner:nil options:nil]lastObject];
    }
    //3.返回
    return cell;
    
}
//重写getData属性的setter方法,当getData被赋值的时候,就会调用setter方法,
//在方法里面对cell的内容进行设置,也就是一拿到数据,就设置值
-(void)setGetData:(CJActive *)getData{
    _getData = getData;
    self.title.text =getData.name;
   //.......
    } ];

}

3.Controller层设计

CJActiveController.m文件实现

@interface CJActiveController ()
@property (nonatomic, strong) NSArray *activeInfo;//定义一个属性,加载数据
@end

@implementation CJActiveController
 
//懒加载需要的数据
-(NSArray *)activeInfo{
    if (_activeInfo==nil) {        
        _activeInfo = [CJActive activeList];      
    }
    return _activeInfo;   
}

#pragma mark 数据源方法
-(NSInteger)numberOfSectionsInTableView:(nonnull UITableView *)tableView{
    return 1;
}
-(NSInteger)tableView:(nonnull UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    
    return self.activeInfo.count;
}

-(UITableViewCell *)tableView:(nonnull UITableView *)tableView cellForRowAtIndexPath:(nonnull NSIndexPath *)indexPath{
    
    //1.创建可重用的自定义cell
    CJActiveCell *cell =[CJActiveCell cellWithTableView:tableView];
    
    //2.设置值
    CJActive *active = self.activeInfo[indexPath.row];
    cell.getData =active;
  
    //3.return
    return  cell;
}

你可能感兴趣的:(ios界面设计之自定义Cell)