NavigationBarView.h 583 B

12345678910111213141516171819202122232425
  1. //
  2. // NavigationBarView.h
  3. // BuguLive
  4. //
  5. // Created by qitewei on 2025/8/13.
  6. // Copyright © 2025 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NavigationBarView : UIView
  11. @property (nonatomic, strong) UIView *contentView;
  12. @property (nonatomic, strong) UILabel *titleLabel;
  13. @property (nonatomic, strong) UIButton *backButton;
  14. @property (nonatomic, strong) UIButton *rightButton;
  15. @property (nonatomic, copy) void(^onBackButtonkAction)(void);
  16. @property (nonatomic, copy) void(^onRightButtonkAction)(void);
  17. @end
  18. NS_ASSUME_NONNULL_END