zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    BZOJ3732: Network(Kruskal重构树)
    AtCoder Beginner Contest 103
    2018.7.21NOIP模拟赛?解题报告
    PE刷题记
    杜教筛入门
    浅谈积性函数的线性筛法
    BZOJ4916: 神犇和蒟蒻(杜教筛)
    BZOJ2818: Gcd(莫比乌斯反演)
    LD1-B(最短路径-SPFA)
    UVa 10837 A Research Problem 欧拉函数
  • 原文地址:https://www.cnblogs.com/supper-Ho/p/6246454.html
Copyright © 2011-2022 走看看