The indicator not showing i'm useing storyboard

any one face this problem ??!!!
Yeah, I faced the same issue with the latest release
did u find the solution ?
@royatv Nope. Did you find any?
I am also facing the same issue.Please resolve this bug.
Not working if you have set the BarButton view except then the aligned with top layout guide.
Please help !
Same here.
Same here. The interesting thing is that if I build with my mac it works fine, but the autobuild version is missing the _selectedBar.
When selectedBar is initialized, the frame width and height value is 1000.
Another info that might help:
My xcode version is 8.1, but the autobuilder has 8.0.
I use the obj-c branch.
Update
Might be relevant to this issue: http://stackoverflow.com/a/39790074
I found a solution based on this SO answer: http://stackoverflow.com/a/39222046
I update the frame in layoutSubviews() in XLButtonBarView.m
- (void)layoutSubviews() {
[super layoutSubviews];
[self.selectedBar setFrame:CGRectMake(0, self.frame.size.height - _selectedBarHeight, 0, _selectedBarHeight)];
}
@royatv try this solution from StackOverflow
@vaibhav-varshaaweblabs thank u it's work 馃憦馃徏
Guys could you provide more info about how you are specifying the buttonBarView, in particular its position?