ZYBaseWindow.h 476 B

123456789101112131415161718192021
  1. //
  2. // ZYBaseWindow.h
  3. // VQU
  4. //
  5. // Created by Elaine on 2021/1/9.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ZYBaseWindow : UIViewController
  11. @property(nonatomic,strong)UIView *baseView;//白色背景View
  12. @property(nonatomic,assign)CGFloat vWidth,vHeight;//白色View的大小
  13. @property(nonatomic,assign)BOOL isTouchDismiss;//是否点击返回 YES。返回。 NO 不返回
  14. @end
  15. NS_ASSUME_NONNULL_END