MSYMineInfoProgressCell.h 557 B

12345678910111213141516171819202122232425
  1. //
  2. // MSYMineInfoProgressCell.h
  3. // MSYMineInfo
  4. //
  5. // Created by admin on 2022/3/1.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "YOUPAIMineInfoBaseCell.h"
  9. #import "YOUPAIBubbleLabel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MSYMineInfoProgressCell : YOUPAIMineInfoBaseCell
  12. // 进度
  13. @property(strong, nonatomic) UIProgressView *progressView;
  14. // 进度标识
  15. @property(strong, nonatomic) UILabel *progressLab;
  16. // 标签
  17. @property(strong, nonatomic) UILabel *remarkView;
  18. // 气泡
  19. @property(strong, nonatomic) YOUPAIBubbleLabel*bubbleLab;
  20. @end
  21. NS_ASSUME_NONNULL_END