CustomNaviBarView.m 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. //
  2. // CustomNaviBarView.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "CustomNaviBarView.h"
  8. #define FLOAT_TitleSizeNormal 19.0f
  9. #define FLOAT_TitleSizeMini 14.0f
  10. #define RGB_TitleNormal RGB(80.0f, 80.0f, 80.0f)
  11. #define RGB_TitleMini [UIColor blackColor]
  12. @interface CustomNaviBarView ()
  13. /**
  14. 自定义左边按钮(数组)
  15. */
  16. @property (nonatomic, strong) NSArray *leftButtonArray;
  17. /**
  18. 自定义右边按钮(数组)
  19. */
  20. @property (nonatomic, strong) NSArray *rightButtonArray;
  21. /**
  22. 中心标题view
  23. */
  24. @property (nonatomic, strong) UIView *titleView;
  25. @property (nonatomic, readonly) UIButton *btnLeft;
  26. @property (nonatomic, readonly) UIButton *btnRight;
  27. @property (nonatomic, strong) UILabel *titleLabel;
  28. @end
  29. @implementation CustomNaviBarView
  30. + (CGSize)barBtnSize
  31. {
  32. return CGSizeMake(40.0f, 40.0f);
  33. }
  34. + (CGSize)titleViewSize
  35. {
  36. return CGSizeMake(ScreenWidth - 100.0f, 40.0f);
  37. }
  38. +(CGFloat)edgeSize{
  39. return 5.0f;
  40. }
  41. + (CGRect)titleViewFrame:(CGRect)rect
  42. {
  43. float width = 0;
  44. float height = 0;
  45. if (rect.size.width > 0 || rect.size.height > 0) {
  46. width = rect.size.width;
  47. height = rect.size.height;
  48. }else{
  49. width = [[self class] titleViewSize].width;
  50. height = [[self class] titleViewSize].height;
  51. }
  52. if (iphoneX) {
  53. return CGRectMake(100.0f/2.f, 22.0f+20.0f, width, height);
  54. }else{
  55. return CGRectMake(100.0f/2.f, 22.0f, width, height);
  56. }
  57. }
  58. + (CGRect)leftBtnFrame
  59. {
  60. if (iphoneX) {
  61. return CGRectMake([[self class] edgeSize], 22.0f+20.0f, [[self class] barBtnSize].width, [[self class] barBtnSize].height);
  62. }else{
  63. return CGRectMake([[self class] edgeSize], 22.0f, [[self class] barBtnSize].width, [[self class] barBtnSize].height);
  64. }
  65. }
  66. + (CGRect)rightBtnFrame:(CGRect)rect
  67. {
  68. float width = 0;
  69. float height = 0;
  70. if (rect.size.width > 0 || rect.size.height> 0) {
  71. width = rect.size.width;
  72. height = rect.size.height;
  73. }else{
  74. width = [[self class] barBtnSize].width;
  75. height = [[self class] barBtnSize].height;
  76. }
  77. if (iphoneX) {
  78. return CGRectMake(ScreenWidth - width - [[self class] edgeSize], 22.0f+20.0f, width, height);
  79. }else{
  80. return CGRectMake(ScreenWidth - width - [[self class] edgeSize], 22.0f, width, height);
  81. }
  82. }
  83. - (id)initWithFrame:(CGRect)frame
  84. {
  85. self = [super initWithFrame:frame];
  86. if (self) {
  87. [self initUI];
  88. }
  89. return self;
  90. }
  91. - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
  92. UIView *view = [super hitTest:point withEvent:event];
  93. if (view == nil) {
  94. for (UIView *subView in self.subviews) {
  95. CGPoint tp = [subView convertPoint:point fromView:self];
  96. if (CGRectContainsPoint(subView.bounds, tp)) {
  97. view = subView;
  98. }
  99. }
  100. }
  101. return view;
  102. }
  103. - (void)initUI
  104. {
  105. self.backgroundColor = [UIColor whiteColor];
  106. // 默认左侧显示返回按钮
  107. // _btnBack = [[self class] createImgNaviBarBtnByImgNormal:@"icon_arrow_left" imgHighlight:@"icon_arrow_left" target:self action:@selector(btnBack:)];
  108. _btnBack = [UIButton buttonWithType:UIButtonTypeCustom];
  109. [_btnBack addTarget:self action:@selector(btnBack:) forControlEvents:UIControlEventTouchUpInside];
  110. [_btnBack setImage:ImageNamed(@"icon_arrow_left") forState:UIControlStateNormal];
  111. _titleLabel = [[UILabel alloc] initWithFrame:CGRectZero];
  112. _titleLabel.backgroundColor = [UIColor clearColor];
  113. _titleLabel.textColor = [UIColor blackColor];
  114. _titleLabel.font = font(19);
  115. _titleLabel.textAlignment = NSTextAlignmentCenter;
  116. _imgViewBg = [[UIImageView alloc] initWithFrame:self.bounds];
  117. _imgViewBg.image = [[UIImage imageNamed:@"nav_backGround_image"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
  118. _titleLabel.frame = [[self class] titleViewFrame:CGRectZero];
  119. _imgViewBg.frame = self.bounds;
  120. [self addSubview:_imgViewBg];
  121. [self addSubview:_titleLabel];
  122. [self addSubview:self.topLine];
  123. [self setLeftBtn:_btnBack];
  124. [self.topLine mas_makeConstraints:^(MASConstraintMaker *make) {
  125. make.bottom.left.right.equalTo(self);
  126. make.height.mas_equalTo(0.5);
  127. }];
  128. }
  129. - (UIView *)topLine {
  130. if (!_topLine) {
  131. _topLine = [[UIView alloc] init];
  132. _topLine.backgroundColor = UIColorFromRGB(0xD8E3EB);
  133. }
  134. return _topLine;
  135. }
  136. - (void)btnBack:(id)sender
  137. {
  138. if (self.m_viewCtrlParent)
  139. {
  140. [self.m_viewCtrlParent.navigationController popViewControllerAnimated:YES];
  141. }else{}
  142. }
  143. #pragma mark -
  144. - (void)hideOriginalBarItem:(BOOL)bIsHide
  145. {
  146. if (_btnLeft)
  147. {
  148. _btnLeft.hidden = bIsHide;
  149. }else{}
  150. if (_btnBack)
  151. {
  152. _btnBack.hidden = bIsHide;
  153. }else{}
  154. if (_btnRight)
  155. {
  156. _btnRight.hidden = bIsHide;
  157. }else{}
  158. if (_titleLabel)
  159. {
  160. _titleLabel.hidden = bIsHide;
  161. }else{}
  162. }
  163. - (void)setTitle:(NSString *)title{
  164. _title = title;
  165. self.titleLabel.text = Local(title);
  166. }
  167. -(void)setBgColor:(UIColor *)bgColor{
  168. if (CGColorEqualToColor(bgColor.CGColor, [UIColor clearColor].CGColor)|| CGColorEqualToColor(bgColor.CGColor, HColor(@"#FF4159").CGColor)) {
  169. self.topLine.backgroundColor = bgColor;
  170. } else{
  171. self.topLine.backgroundColor = UIColorFromRGB(0xD8E3EB);
  172. self.titleLabel.hidden = NO;
  173. }
  174. [self setBackgroundColor:bgColor];
  175. }
  176. -(void)setWhite{
  177. self.titleLabel.textColor = [UIColor whiteColor];
  178. [self setBackgroundColor:[UIColor clearColor]];
  179. [self.btnLeft setImage:ImageNamed(@"backWhite") forState:UIControlStateNormal];
  180. [self.topLine removeFromSuperview];
  181. }
  182. - (void)setLeftBtn:(UIButton *)btn
  183. {
  184. if (_btnLeft)
  185. {
  186. [_btnLeft removeFromSuperview];
  187. _btnLeft = nil;
  188. }else{}
  189. _btnLeft = btn;
  190. if (_btnLeft){
  191. _btnLeft.frame = [[self class] leftBtnFrame];
  192. [self addSubview:_btnLeft];
  193. }else{}
  194. }
  195. - (void)setRightBtn:(UIButton *)btn
  196. {
  197. if (_btnRight)
  198. {
  199. [_btnRight removeFromSuperview];
  200. _btnRight = nil;
  201. }else{}
  202. _btnRight = btn;
  203. if (_btnRight){
  204. _btnRight.frame = [[self class] rightBtnFrame:_btnRight.frame];
  205. [self addSubview:_btnRight];
  206. }else{}
  207. }
  208. -(void)setTitleView:(UIView *)titleView{
  209. if (_titleView) {
  210. [_titleView removeFromSuperview];
  211. _titleView = nil;
  212. }
  213. if (_titleLabel) {
  214. [_titleLabel removeFromSuperview];
  215. _titleLabel = nil;
  216. }
  217. _titleView = titleView;
  218. _titleView.frame = [[self class] titleViewFrame:_titleView.frame];
  219. [self addSubview:_titleView];
  220. }
  221. -(void)setLeftButtonArray:(NSArray *)leftButtonArray{
  222. _leftButtonArray = leftButtonArray;
  223. if (_btnLeft) {
  224. [self.btnLeft removeFromSuperview];
  225. }
  226. [leftButtonArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  227. UIButton *button = obj;
  228. CGRect frame = button.frame;
  229. if (iphoneX) {
  230. frame.origin = CGPointMake(kNumFrom375(10+idx*40), kNumFrom375(28+22));
  231. }else {
  232. frame.origin = CGPointMake(kNumFrom375(10+idx*40), kNumFrom375(28));
  233. }
  234. button.frame = frame;
  235. [self addSubview:button];
  236. }];
  237. }
  238. -(void)setRightButtonArray:(NSArray *)rightButtonArray{
  239. _rightButtonArray = rightButtonArray;
  240. if (_btnRight) {
  241. [self.btnRight removeFromSuperview];
  242. }
  243. [rightButtonArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  244. UIButton *button = obj;
  245. CGRect frame = button.frame;
  246. if (iphoneX) {
  247. frame.origin = CGPointMake(ScreenWidth- kNumFrom375(frame.size.width) - kNumFrom375(idx*40) - kNumFrom375(idx*10), kNumFrom375(28+22));
  248. }else {
  249. frame.origin = CGPointMake(ScreenWidth- kNumFrom375(frame.size.width) - kNumFrom375(idx*40) - kNumFrom375(idx*10) - kNumFrom375(10), kNumFrom375(28));
  250. }
  251. button.frame = frame;
  252. [self addSubview:button];
  253. }];
  254. }
  255. @end