Xlpagertabstrip: indicator not showing

Created on 27 Nov 2016  路  10Comments  路  Source: xmartlabs/XLPagerTabStrip

The indicator not showing i'm useing storyboard

screen shot 2016-11-27 at 12 17 13 pm

any one face this problem ??!!!

issue

All 10 comments

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?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jhkersul picture jhkersul  路  15Comments

always19 picture always19  路  23Comments

ShockUtility picture ShockUtility  路  10Comments

miguelgutierrezhcd picture miguelgutierrezhcd  路  10Comments

pmendiburu picture pmendiburu  路  16Comments