| 1234567891011121314151617181920212223 |
- //
- // YOUPAIZYSelectSexWindow.h
- // VQU
- //
- // Created by Elaine on 2020/12/14.
- // Copyright © 2020 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ZYBaseWindow.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol ZYSelectSexWindowDelegate <NSObject>
- -(void)youpaifSelectSexWindowAction:(NSInteger)gender;
- @end
- @interface YOUPAIZYSelectSexWindow : ZYBaseWindow
- //@property(nonatomic,assign)CGFloat vWith,vHeight;
- @property(nonatomic,assign)NSInteger youpaipgender;
- @property(nonatomic,weak)id<ZYSelectSexWindowDelegate>youpaipdelegate;
- @end
- NS_ASSUME_NONNULL_END
|