12345678910111213141516171819202122 |
- //
- // RQExerciseExamKnowAlertView.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/8/3.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseExamKnowAlertView : UIView
- + (instancetype)exerciseExamKnowAlertView;
- @property (weak, nonatomic) IBOutlet UILabel *examCarTypeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *examStandardLabel;
- @property (weak, nonatomic) IBOutlet UILabel *examSuccessStandardLabel;
- @property (weak, nonatomic) IBOutlet UILabel *examRuleLabel;
- @end
- NS_ASSUME_NONNULL_END
|