ASBaseViewController.h 503 B

123456789101112131415161718192021222324
  1. //
  2. // ASBaseViewController.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/4/24.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ASBaseViewController : UIViewController
  10. @property (nonatomic, strong) UIView *statusBgV;
  11. @property (nonatomic, strong) UIView *customNavBar;
  12. @property (nonatomic, copy) NSString *titleStr;
  13. @property (nonatomic, strong) UIImage *titleImg;
  14. @property (nonatomic, strong) UIView *leftV;
  15. @property (nonatomic, strong) UIView *rightV;
  16. @end
  17. NS_ASSUME_NONNULL_END