diff --git a/Pod/Classes/RMPScrollingMenuBar.m b/Pod/Classes/RMPScrollingMenuBar.m index 50a7813..968bc7a 100644 --- a/Pod/Classes/RMPScrollingMenuBar.m +++ b/Pod/Classes/RMPScrollingMenuBar.m @@ -528,6 +528,12 @@ - (void)setBarHeight:(CGFloat)barHeight _barHeight = barHeight; [self sizeToFit]; + + // indicatorView repositioning. + CGRect frame = _indicatorView.frame; + frame.origin.y = self.bounds.size.height - 4; + _indicatorView.frame = frame; + [self layoutIfNeeded]; }