码迷,mamicode.com
首页 > 其他好文 > 详细

xib自定义cell代码规范

时间:2017-01-03 22:34:05      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:instance   named   queue   price   价格   ble   gen   last   interface   

//

//  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

 

xib自定义cell代码规范

标签:instance   named   queue   price   价格   ble   gen   last   interface   

原文地址:http://www.cnblogs.com/supper-Ho/p/6246454.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!