27 lines
681 B
Objective-C
27 lines
681 B
Objective-C
//
|
|
// MineGoldCustomViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/15.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "MineGoldModel.h"
|
|
//typedef NS_ENUM(NSInteger, MineGoldCellType){
|
|
// MineGoldCellTypeIn = 0,
|
|
// MineGoldCellTypeOut
|
|
//};
|
|
|
|
@interface MineGoldCustomViewCell : UITableViewCell
|
|
//@property (nonatomic) MineGoldCellType cellType;
|
|
@property (weak, nonatomic) IBOutlet UILabel *remaklabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *creatTime;
|
|
@property (weak, nonatomic) IBOutlet UILabel *goldlabel;
|
|
|
|
-(void)loadLeftTabCellData:(MineGoldModel*)model;
|
|
|
|
-(void)loadRightTabCellData:(MineGoldModel*)model;
|
|
|
|
@end
|