YOUPAIZYSelectSexWindow.h 568 B

1234567891011121314151617181920212223
  1. //
  2. // YOUPAIZYSelectSexWindow.h
  3. // VQU
  4. //
  5. // Created by Elaine on 2020/12/14.
  6. // Copyright © 2020 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ZYBaseWindow.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol ZYSelectSexWindowDelegate <NSObject>
  12. -(void)youpaifSelectSexWindowAction:(NSInteger)gender;
  13. @end
  14. @interface YOUPAIZYSelectSexWindow : ZYBaseWindow
  15. //@property(nonatomic,assign)CGFloat vWith,vHeight;
  16. @property(nonatomic,assign)NSInteger youpaipgender;
  17. @property(nonatomic,weak)id<ZYSelectSexWindowDelegate>youpaipdelegate;
  18. @end
  19. NS_ASSUME_NONNULL_END