26 lines
716 B
Objective-C
26 lines
716 B
Objective-C
//
|
|
// MaskResultPercentCell.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/20.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "MaskTestResult.h"
|
|
|
|
@interface MaskResultPercentCell : UITableViewCell
|
|
-(void)loadCellData:(MaskTestResult *)model;
|
|
@property (nonatomic,strong) UIView *oilView;
|
|
@property (nonatomic,strong) UILabel *oilLabe;
|
|
@property (nonatomic,strong) UILabel *waterlabe;
|
|
@property (nonatomic,strong) UIView *percentColorView;
|
|
@property (nonatomic) CADisplayLink *displayLink;
|
|
|
|
@property (nonatomic) int oilMAXProgress;
|
|
@property (nonatomic) int waterMAXPorgress;
|
|
@property (nonatomic) CGFloat oilness;
|
|
//@property (nonatomic) CGFloat waterness;
|
|
|
|
@end
|