ASBaseViewController.h 550 B

1234567891011121314151617181920212223242526
  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. - (void)ucHomeStyle:(btnClickBlock)tapSearch;
  17. @end
  18. NS_ASSUME_NONNULL_END