YMBaseCustomNavView.h 552 B

1234567891011121314151617181920212223
  1. //
  2. // YMBaseCustomNavView.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2023/11/7.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface YMBaseCustomNavView : UIView
  10. ///自定义navItem
  11. @property (nonatomic, strong) UINavigationItem *ym_customNavItem;
  12. ///自定义nav
  13. @property (nonatomic, strong) UINavigationBar *ym_customNavBar;
  14. ///自定义背景图
  15. @property (nonatomic, strong) UIImageView *ym_customBackgroundImage;
  16. ///自定义底部线条
  17. @property (nonatomic, strong, readonly) UIView *ym_customNavBarLine;
  18. @end
  19. NS_ASSUME_NONNULL_END