CustomNaviBarView.h 930 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // CustomNaviBarView.h
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface CustomNaviBarView : UIView
  9. @property (nonatomic, weak) UIViewController *m_viewCtrlParent;
  10. @property (nonatomic, readonly) UIImageView *imgViewBg;
  11. @property (nonatomic, readonly) UIButton *btnBack;
  12. @property (nonatomic, strong) NSString *title;
  13. /**
  14. 自定义底部分割线
  15. */
  16. @property (nonatomic, strong) UIView *topLine;
  17. + (CGRect)rightBtnFrame:(CGRect)rect;
  18. + (CGSize)barBtnSize;
  19. + (CGRect)titleViewFrame:(CGRect)rect;
  20. // 用自定义的按钮和标题替换默认内容
  21. - (void)setLeftBtn:(UIButton *)btn;
  22. - (void)setRightBtn:(UIButton *)btn;
  23. - (void)setTitleView:(UIView *)titleView;
  24. - (void)setLeftButtonArray:(NSArray *)leftButtonArray;
  25. - (void)setRightButtonArray:(NSArray *)rightButtonArray;
  26. - (void)setBgColor:(UIColor *)bgColor;
  27. - (void)setWhite;
  28. @end