ZZSwitchWidget.h 432 B

123456789101112131415161718192021222324
  1. //
  2. // ZZSwitchWidget.h
  3. // ZZUIKit
  4. //
  5. // Created by Max on 2021/3/3.
  6. //
  7. #import <FlexLib/FlexLib.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ZZSwitchWidget : FlexCustomBaseView
  10. /// 文字
  11. @property(nonatomic,strong) UILabel *title;
  12. /// 开关
  13. @property(nonatomic,strong) UISwitch *toggle;
  14. /// 开关
  15. @property(nonatomic,strong) UILabel *toggleLabel;
  16. @property(nonatomic,strong) UILabel *toggleOffLabel;
  17. @end
  18. NS_ASSUME_NONNULL_END