12345678910111213141516171819202122232425262728 |
- //
- // RQExamResultHeaderView.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/7/26.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExamResultHeaderView : UIView
- @property (weak, nonatomic) IBOutlet UIImageView *bgImageView;
- @property (weak, nonatomic) IBOutlet QMUIButton *backBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *reportCardBtn;
- @property (weak, nonatomic) IBOutlet UILabel *scoreLabel;
- @property (weak, nonatomic) IBOutlet UILabel *resultLabel;
- @property (weak, nonatomic) IBOutlet UILabel *unDoLabel;
- @property (weak, nonatomic) IBOutlet UILabel *errorLabel;
- @property (weak, nonatomic) IBOutlet QMUIButton *resultBtn;
- @property (weak, nonatomic) IBOutlet UILabel *resultDscLabel;
- @property (weak, nonatomic) IBOutlet QMUIPieProgressView *myProgressView;
- @property (weak, nonatomic) IBOutlet QMUIButton *fastUpBtn;
- + (instancetype)examResultHeaderView;
- @end
- NS_ASSUME_NONNULL_END
|