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

  • 相关阅读:
    web性能优化
    比 git log 更强大的 git reflog
    父组件调用子组件的方法
    react-loadable 进行代码分割的基本使用
    create-react-app 使用 webpack 打包压缩失败
    mysql安装问题
    php 二维数组排序
    php 文件缓存 include vs serialize vs json_encode
    ab命令压力测试
    mysql使用的坑
  • 原文地址:https://www.cnblogs.com/supper-Ho/p/6246454.html
Copyright © 2011-2022 走看看