RQSimulationResultsHeaderView.h 550 B

123456789101112131415161718192021
  1. //
  2. // RQSimulationResultsHeaderView.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/10.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQSimulationResultsHeaderView : UIView
  10. @property (weak, nonatomic) IBOutlet UILabel *examBestResultsLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *examTotalLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *examAverageScoreLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *examAchievementPredictionLabel;
  14. /// init
  15. + (instancetype)simulationResultsHeaderView;
  16. @end
  17. NS_ASSUME_NONNULL_END