LZPickerWindow.h 480 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // LZPickerWindow.h
  3. // MEISHI
  4. //
  5. // Created by CY on 2021/1/25.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import "ZYBaseWindow.h"
  9. @class PGPickerView;
  10. @protocol LZPickerWindowDelegate <NSObject>
  11. /// 点击确认
  12. - (void)confirmClick;
  13. @end
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface LZPickerWindow : ZYBaseWindow
  16. @property (nonatomic, weak) id<LZPickerWindowDelegate> delegate;
  17. @property (nonatomic, strong) PGPickerView *pickerView;
  18. @end
  19. NS_ASSUME_NONNULL_END