1234567891011121314151617181920212223242526272829303132 |
- //
- // YOUPAIHRWebWindow.h
- // YOUQU
- //
- // Created by xiaohaoran on 2021/12/13.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "ZYBaseWindow.h"
- typedef NS_ENUM(NSUInteger,LZWebDirection){
- LZWebDirectionWithCenter = 0,
- LZWebDirectionWithTop,
- LZWebDirectionWithLeft,
- LZWebDirectionWithRight,
- LZWebDirectionWithBottom,
- LZWebDirectionWithFull
- };
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAIHRWebWindow : ZYBaseWindow
- @property (nonatomic, assign) LZWebDirection youpaipdirection;
- @property (nonatomic, copy) NSString *youpaipurl;
- @property (nonatomic, assign) CGFloat youpaipwidth;
- @property (nonatomic, assign) CGFloat youpaipheight;
- @property (nonatomic, strong) NSString *youpaipgravity;
- @end
- NS_ASSUME_NONNULL_END
|