45 lines
1021 B
Objective-C
45 lines
1021 B
Objective-C
//
|
||
// MineGoldCustomViewCell.m
|
||
// Ifish
|
||
//
|
||
// Created by imac on 17/3/15.
|
||
// Copyright © 2017年 lianlian. All rights reserved.
|
||
//
|
||
|
||
#import "MineGoldCustomViewCell.h"
|
||
|
||
@implementation MineGoldCustomViewCell
|
||
|
||
- (void)awakeFromNib {
|
||
[super awakeFromNib];
|
||
// Initialization code
|
||
}
|
||
|
||
-(void)loadLeftTabCellData:(MineGoldModel*)model
|
||
{
|
||
self.remaklabel.text = model.titleName;
|
||
self.creatTime.text = model.creatTime;
|
||
self.goldlabel.textColor = RGB(255, 115, 92);
|
||
self.goldlabel.text = [NSString stringWithFormat:@"+%@",model.goldValue];
|
||
|
||
}
|
||
|
||
-(void)loadRightTabCellData:(MineGoldModel*)model
|
||
{
|
||
self.remaklabel.text = model.titleName;
|
||
self.creatTime.text = model.creatTime;
|
||
self.goldlabel.textColor = RGB(0, 185, 239);
|
||
self.goldlabel.text = [NSString stringWithFormat:@"-%@",model.goldValue];
|
||
|
||
|
||
|
||
}
|
||
|
||
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
||
[super setSelected:selected animated:animated];
|
||
|
||
// Configure the view for the selected state
|
||
}
|
||
|
||
@end
|