DialPlateView.h 295 B

12345678910111213141516171819
  1. //
  2. // DialPlateView.h
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/10/14.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "KSGaugeView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// 表盘View
  11. @interface DialPlateView : UIView
  12. @property (nonatomic, strong) KSGaugeView *gaugeView;
  13. @end
  14. NS_ASSUME_NONNULL_END