12345678910111213141516171819202122232425262728293031 |
- //
- // LZPickerWindow.h
- // MEISHI
- //
- // Created by CY on 2021/1/25.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import "ZYBaseWindow.h"
- @class PGPickerView;
- @protocol LZPickerWindowDelegate <NSObject>
- /// 点击确认
- - (void)confirmClick;
- @end
- NS_ASSUME_NONNULL_BEGIN
- @interface LZPickerWindow : ZYBaseWindow
- @property (nonatomic, weak) id<LZPickerWindowDelegate> delegate;
- @property (nonatomic, strong) PGPickerView *pickerView;
- @end
- NS_ASSUME_NONNULL_END
|