I\'ve an UISlider on my app and I need sometimes to update not only its value but also its minimumValue. The values are changed but if I call the setValue method or assign a new
As UISlider inherits from UIView can you not just call [yourSlider setNeedsDisplay]; after you've updated the values.
This will force the UISlider instance to completely redraw itself and may therefore take into account the new values you've set.
EDIT:
There seems to be some common issues when embedding a UISlider in a UIBarButtonItem - please see this Stack Overflow question for more information.