123456789101112131415161718192021 |
- //
- // RQSimulationResultsHeaderView.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/10.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQSimulationResultsHeaderView : UIView
- @property (weak, nonatomic) IBOutlet UILabel *examBestResultsLabel;
- @property (weak, nonatomic) IBOutlet UILabel *examTotalLabel;
- @property (weak, nonatomic) IBOutlet UILabel *examAverageScoreLabel;
- @property (weak, nonatomic) IBOutlet UILabel *examAchievementPredictionLabel;
- /// init
- + (instancetype)simulationResultsHeaderView;
- @end
- NS_ASSUME_NONNULL_END
|