| 123456789101112131415161718192021222324 | 
							- //
 
- //  ASBaseViewController.h
 
- //  Asteria
 
- //
 
- //  Created by iOS on 2023/4/24.
 
- //
 
- #import <UIKit/UIKit.h>
 
- NS_ASSUME_NONNULL_BEGIN
 
- @interface ASBaseViewController : UIViewController
 
- @property (nonatomic, strong) UIView *statusBgV;
 
- @property (nonatomic, strong) UIView *customNavBar;
 
- @property (nonatomic, copy) NSString *titleStr;
 
- @property (nonatomic, strong) UIImage *titleImg;
 
- @property (nonatomic, strong) UIView *leftV;
 
- @property (nonatomic, strong) UIView *rightV;
 
- @end
 
- NS_ASSUME_NONNULL_END
 
 
  |