You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Got the same problem after update to iOS 9.3. Fixed it somehow :) Seems it is connected to selectedMinimum and selectedMaximum. Where do u get currentMin and currentMax?
When use it programmatically rightHandle is not shown and seems like the slideeLine width is greater than screen size
here is my code
self.rangeSlider = [[TTRangeSlider alloc] initWithFrame:CGRectMake(0, 0, self.rangeSliderContainer.frame.size.width, self.rangeSliderContainer.frame.size.height)];
[self.rangeSliderContainer addSubview:self.rangeSlider];
self.rangeSlider.delegate = self;
self.rangeSlider.minValue = attribute.minimum;
self.rangeSlider.maxValue = max;
self.rangeSlider.selectedMinimum = currentMin;
self.rangeSlider.selectedMaximum = currentMax;
self.rangeSlider.step = attribute.sliderSteps ? attribute.sliderSteps : 1;
self.rangeSlider.enableStep = YES;
The text was updated successfully, but these errors were encountered: