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

  • 相关阅读:
    Redis的主从复制
    JVM之jps命令
    ThreadLocal源码分析
    ThreadLocal初体验
    Redis的逐出算法
    Redis的删除策略
    DagScheduler 和 TaskScheduler
    数据挖掘的数据预处理
    日志实时收集和计算的简单方案
    spark ml 的例子
  • 原文地址:https://www.cnblogs.com/LiLihongqiang/p/5534612.html
Copyright © 2011-2022 走看看