12345678910111213141516171819 |
- //
- // DialPlateView.h
- // KulexiuForStudent
- //
- // Created by 王智 on 2022/10/14.
- //
- #import <UIKit/UIKit.h>
- #import "KSGaugeView.h"
- NS_ASSUME_NONNULL_BEGIN
- /// 表盘View
- @interface DialPlateView : UIView
- @property (nonatomic, strong) KSGaugeView *gaugeView;
- @end
- NS_ASSUME_NONNULL_END
|