dkahgld

ZBBaseViewController.h 484B

12345678910111213141516171819202122
  1. //
  2. // ZBBaseViewController.h
  3. // ZBProject
  4. //
  5. // Created by 学丽 on 2019/3/26.
  6. // Copyright © 2019 ZB. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ZBNavigationBar.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ZBBaseViewController : UIViewController
  12. @property(nonatomic,strong)ZBNavigationBar *navBar;
  13. @property(nonatomic,strong)UIView *backView;
  14. @property(nonatomic,strong)UIImageView * headImgV;
  15. @property(nonatomic,copy)NSString *typePush;
  16. @end
  17. NS_ASSUME_NONNULL_END