20 lines
458 B
Objective-C
20 lines
458 B
Objective-C
//
|
|
// MasHistoryFirstViewCell.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/24.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface MasHistoryFirstViewCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UIButton *guizeBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLabe;
|
|
@property (weak, nonatomic) IBOutlet UILabel *rankLabe;
|
|
@property (weak, nonatomic) IBOutlet UIView *timeView;
|
|
|
|
|
|
|
|
@end
|