代码改变世界

xib自定义cell代码规范

2017-01-03 21:08  supper_Ho  阅读(306)  评论(0编辑  收藏  举报

//

//  MJTgCell.m

//  01-团购

//

//  Created by apple on 14-4-1.

//  Copyright (c) 2014年 itcast. All rights reserved.

//

 

#import "MJTgCell.h"

#import "MJTg.h"

 

@interface MJTgCell()

@property (weak, nonatomic) IBOutlet UIImageView *iconView;

@property (weak, nonatomic) IBOutlet UILabel *titleView;

@property (weak, nonatomic) IBOutlet UILabel *priceView;

@property (weak, nonatomic) IBOutlet UILabel *buyCountView;

 

@end

 

@implementation MJTgCell

 

+ (instancetype)cellWithTableView:(UITableView *)tableView

{

    static NSString *ID = @"tg";

    MJTgCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    if (cell == nil) {

        // 从xib中加载cell

        cell = [[[NSBundle mainBundle] loadNibNamed:@"MJTgCell" owner:nil options:nil] lastObject];

    }

    return cell;

}

 

- (void)setTg:(MJTg *)tg

{

    _tg = tg;

    

    // 1.图片

    self.iconView.image = [UIImage imageNamed:tg.icon];

    

    // 2.标题

    self.titleView.text = tg.title;

    

    // 3.价格

    self.priceView.text = [NSString stringWithFormat:@"¥%@", tg.price];

    

    // 4.购买数

    self.buyCountView.text = [NSString stringWithFormat:@"%@人已购买", tg.buyCount];

}

 

@end