12345678910111213141516171819202122 |
- //
- // ZBBaseViewController.h
- // ZBProject
- //
- // Created by 学丽 on 2019/3/26.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ZBNavigationBar.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBBaseViewController : UIViewController
- @property(nonatomic,strong)ZBNavigationBar *navBar;
- @property(nonatomic,strong)UIView *backView;
- @property(nonatomic,strong)UIImageView * headImgV;
- @property(nonatomic,copy)NSString *typePush;
- @end
- NS_ASSUME_NONNULL_END
|