1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // ZBNavigationBar.h
- // ZBProject
- //
- // Created by 学丽 on 2019/3/26.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef NS_ENUM(NSInteger, ZBNavigationBarStyle) {
- YHNavigationBarStyleNormal = 0,
- YHNavigationBarStyleTransparent,
- YHNavigationBarStyleWhite
- };
- @interface ZBNavigationBar : UIView
- // 默认是:no
- @property (nonatomic, assign) BOOL showNavigationBarBottomLine;
- @property (nonatomic, strong) UILabel *navTitleLabel;
- - (void)setBackButtonWithTarget:(id)target selector:(SEL)selector;
- /**
- 设置左边按钮
- */
- - (void)setCustomButtonWithButton:(UIButton*)button target:(id)target selector:(SEL)selector;
- - (void)setCustomLeftButtons:(NSArray<UIButton*>*)buttons;
- - (void)setCustomRightButtons:(NSArray<UIButton*>*)buttons;
- - (void)setNavTitle:(NSString*)title;
- /**
- titleView
- */
- - (void)setCustomTitleView:(UIView*)titleView;
- - (void)setYHNavigationBarStyle:(ZBNavigationBarStyle)barStyle;
- - (void)setNavightionBarBackgroundColor:(UIColor *)color;
- @end
- NS_ASSUME_NONNULL_END
|