ifish/Ifish/controllers/IfishTabControllers/我的/IfishMineGold/View/MineGoldCustomViewCell.m

45 lines
1021 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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