I have slider in my table's cell, here is my slider initialization code:
UISlider* slider = [[UISlider alloc] init];
slider.continuous = NO;
slider.maximumValue = 2;
slider.minimumValue = 0.5f;
slider.value = 0.5f;
...
//put slider into cell
And I can not move this slider's thumb. Why? Please, tell me what I do wrong?
UPDATE: if set slider's initial value to 0.500001f - it works!