xib自定义cell代码规范

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xib自定义cell代码规范相关的知识,希望对你有一定的参考价值。

//

//  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代码规范的主要内容,如果未能解决你的问题,请参考以下文章

IOS xib在tableview上的简单应用(通过xib自定义cell)

利用XIB创建自定义的Cell

利用XIB创建自定义的Cell

iOS小技能:1. cell的重用原理 2. 使用xib封装一个View的步骤 3. 通过代码自定义cell

利用XIB创建自定义的Cell

源码-0203-06-自定义非等高cell-xib