ASBaseViewController.h 682 B

123456789101112131415161718192021222324252627282930313233
  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 *nav_bottomLineV;
  15. @property (nonatomic, strong) UILabel *nav_titleLB;
  16. - (void)ucHomeStyle:(btnClickBlock)tapSearch;
  17. - (void)setNavRightSearch:(btnClickBlock)nav_searchAction;
  18. - (void)hiddenEmpty;
  19. - (void)showEmptyV:(UIView *)v;
  20. @end
  21. NS_ASSUME_NONNULL_END