RQExerciseExamAlertHudView.h 534 B

123456789101112131415161718192021
  1. //
  2. // RQExerciseExamAlertHudView.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/7/21.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "QMUIPieProgressView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RQExerciseExamAlertHudView : UIView
  12. @property (weak, nonatomic) IBOutlet UILabel *myTimeLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *questionNumLabel;
  14. @property (weak, nonatomic) IBOutlet QMUIPieProgressView *myProgressView;
  15. + (instancetype)exerciseExamAlertHudView;
  16. @end
  17. NS_ASSUME_NONNULL_END