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

上一篇:Spring+springmvc+Mybatis整合案例 annotation版(myeclipse)详细版


下一篇:XML的一些点