YOUPAIHRWebWindow.h 754 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // YOUPAIHRWebWindow.h
  3. // YOUQU
  4. //
  5. // Created by xiaohaoran on 2021/12/13.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import "ZYBaseWindow.h"
  9. typedef NS_ENUM(NSUInteger,LZWebDirection){
  10. LZWebDirectionWithCenter = 0,
  11. LZWebDirectionWithTop,
  12. LZWebDirectionWithLeft,
  13. LZWebDirectionWithRight,
  14. LZWebDirectionWithBottom,
  15. LZWebDirectionWithFull
  16. };
  17. NS_ASSUME_NONNULL_BEGIN
  18. @interface YOUPAIHRWebWindow : ZYBaseWindow
  19. @property (nonatomic, assign) LZWebDirection youpaipdirection;
  20. @property (nonatomic, copy) NSString *youpaipurl;
  21. @property (nonatomic, assign) CGFloat youpaipwidth;
  22. @property (nonatomic, assign) CGFloat youpaipheight;
  23. @property (nonatomic, strong) NSString *youpaipgravity;
  24. @end
  25. NS_ASSUME_NONNULL_END