25 lines
787 B
Objective-C
25 lines
787 B
Objective-C
//
|
|
// IfishDoctorTiJiaoViewCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/16.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface IfishDoctorTiJiaoViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIButton *tenGoldBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *twentyGoldBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *fiftyGoldBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *tijiaoBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *canuseGold;
|
|
@property (weak, nonatomic) IBOutlet UIButton *getMoreGoldLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *tenLabe;
|
|
@property (weak, nonatomic) IBOutlet UILabel *twentyLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *fifiTyLabel;
|
|
|
|
-(void)loadCurrentLael;
|
|
|
|
@end
|