1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // HSQNavigationBar.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSInteger, YHNavigationBarStyle) {
- YHNavigationBarStyleNormal = 0,
- YHNavigationBarStyleTransparent,
- YHNavigationBarStyleWhite
- };
- @interface HSQNavigationBar : 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:(YHNavigationBarStyle)barStyle;
- - (void)setNavightionBarBackgroundColor:(UIColor *)color;
- @end
|