The default behaviour of UISlider
is that its thumb isn't centered on start/end of track. Like below:
I would like to modify it's behaviour to get:
where thumb's center can be positioned on start or end.
I have tried to cover start/end with empty UIView
. Effect is that is look almost ok, but thumb has dropshadow that reveals my hack in some positions (which I can live with), however my hacky view covers a little the thumb and captures it's touch event (even when user interactions are disabled).
So I guess I would need to pack my hacky view between thumb and track. Possibly without manipulating its internal views. Any ideas?