1234567891011121314151617181920212223 |
- //
- // YMBaseCustomNavView.h
- // MSYOUPAI
- //
- // Created by YoMi on 2023/11/7.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMBaseCustomNavView : UIView
- ///自定义navItem
- @property (nonatomic, strong) UINavigationItem *ym_customNavItem;
- ///自定义nav
- @property (nonatomic, strong) UINavigationBar *ym_customNavBar;
- ///自定义背景图
- @property (nonatomic, strong) UIImageView *ym_customBackgroundImage;
- ///自定义底部线条
- @property (nonatomic, strong, readonly) UIView *ym_customNavBarLine;
- @end
- NS_ASSUME_NONNULL_END
|