RQExamResultHeaderView.h 966 B

12345678910111213141516171819202122232425262728
  1. //
  2. // RQExamResultHeaderView.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/7/26.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQExamResultHeaderView : UIView
  11. @property (weak, nonatomic) IBOutlet UIImageView *bgImageView;
  12. @property (weak, nonatomic) IBOutlet QMUIButton *backBtn;
  13. @property (weak, nonatomic) IBOutlet QMUIButton *reportCardBtn;
  14. @property (weak, nonatomic) IBOutlet UILabel *scoreLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *resultLabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *unDoLabel;
  17. @property (weak, nonatomic) IBOutlet UILabel *errorLabel;
  18. @property (weak, nonatomic) IBOutlet QMUIButton *resultBtn;
  19. @property (weak, nonatomic) IBOutlet UILabel *resultDscLabel;
  20. @property (weak, nonatomic) IBOutlet QMUIPieProgressView *myProgressView;
  21. @property (weak, nonatomic) IBOutlet QMUIButton *fastUpBtn;
  22. + (instancetype)examResultHeaderView;
  23. @end
  24. NS_ASSUME_NONNULL_END