| 12345678910111213141516171819202122232425 |
- //
- // NavigationBarView.h
- // BuguLive
- //
- // Created by qitewei on 2025/8/13.
- // Copyright © 2025 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NavigationBarView : UIView
- @property (nonatomic, strong) UIView *contentView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UIButton *backButton;
- @property (nonatomic, strong) UIButton *rightButton;
- @property (nonatomic, copy) void(^onBackButtonkAction)(void);
- @property (nonatomic, copy) void(^onRightButtonkAction)(void);
- @end
- NS_ASSUME_NONNULL_END
|