123456789101112131415161718192021 |
- //
- // RQExerciseExamAlertHudView.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/7/21.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "QMUIPieProgressView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQExerciseExamAlertHudView : UIView
- @property (weak, nonatomic) IBOutlet UILabel *myTimeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *questionNumLabel;
- @property (weak, nonatomic) IBOutlet QMUIPieProgressView *myProgressView;
- + (instancetype)exerciseExamAlertHudView;
- @end
- NS_ASSUME_NONNULL_END
|