zoukankan      html  css  js  c++  java
  • tableviewCell折叠状态2

    //

    //  LHQContentViewCell.h

    //  11 - 投资管理 - 李洪强

    //

    //  Created by vic fan on 16/4/12.

    //  Copyright © 2016 李洪强. All rights reserved.

    //

     

    #import <UIKit/UIKit.h>

     

    @class LHQDelegateModel;

    @interface LHQContentViewCell : UITableViewCell

    -------------

    //

    //  LHQContentViewCell.m

    //  11 - 投资管理 - 李洪强

    //

    //  Created by vic fan on 16/4/12.

    //  Copyright © 2016 李洪强. All rights reserved.

    //

     

    #import "LHQContentViewCell.h"

    #import "LHQDelegateModel.h"

    @interface LHQContentViewCell ()

    //

    @property (weak, nonatomic) IBOutlet UITextView *content;

    //借款额度已使用

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

    //当月使用

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

    //能否按时还息

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

    @end

     

     

    @implementation LHQContentViewCell

     

     

    -(void)customedWithModel:(LHQDelegateModel *)model

    {

        NSArray *modelArr = model.contentArr;

        _account.text = modelArr[0];

        _Income.text = modelArr[1];

        _YESOrNo.text = modelArr[2];

        _content.text = modelArr[3];

    }

     

    @end

     

     

     

    -(void)customedWithModel:(LHQDelegateModel *)model;

     

    @end

  • 相关阅读:
    PAT甲级——A1059 Prime Factors
    PAT甲级——A1058 A+B in Hogwarts
    PAT甲级——A1057 Stack
    hdu2665 主席树模板题
    存两个图论模板
    存两个图论模板
    存两个图论模板
    codevs1080 第一次用ZKW线段树
    codevs1080 第一次用ZKW线段树
    codevs1080 第一次用ZKW线段树
  • 原文地址:https://www.cnblogs.com/LiLihongqiang/p/5534612.html
Copyright © 2011-2022 走看看