ifish/Ifish/controllers/IfishTabControllers/探索/FishDoctor/View/IfishDoctorTiJiaoViewCell.m

35 lines
756 B
Objective-C

//
// IfishDoctorTiJiaoViewCell.m
// Ifish
//
// Created by imac on 17/3/16.
// Copyright © 2017年 lianlian. All rights reserved.
//
#import "IfishDoctorTiJiaoViewCell.h"
@implementation IfishDoctorTiJiaoViewCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
self.tijiaoBtn.layer.masksToBounds = YES;
self.tijiaoBtn.layer.cornerRadius = 5;
}
-(void)loadCurrentLael
{
IfishUserAsset *userasset = [dataContorl getAllIfishUserAsset];
self.canuseGold.text = [NSString stringWithFormat:@"%ld",(long)userasset.goldValue];
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end