12345678910111213141516171819202122232425 |
- //
- // MSYMineInfoProgressCell.h
- // MSYMineInfo
- //
- // Created by admin on 2022/3/1.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIMineInfoBaseCell.h"
- #import "YOUPAIBubbleLabel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MSYMineInfoProgressCell : YOUPAIMineInfoBaseCell
- // 进度
- @property(strong, nonatomic) UIProgressView *progressView;
- // 进度标识
- @property(strong, nonatomic) UILabel *progressLab;
- // 标签
- @property(strong, nonatomic) UILabel *remarkView;
- // 气泡
- @property(strong, nonatomic) YOUPAIBubbleLabel*bubbleLab;
- @end
- NS_ASSUME_NONNULL_END
|