Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the thumb of UISlider in iphone?

I have two UISliders in the same view.My requirement is,when user change the value of 1st slider,the 2nd slider value should be change according to it.So,in 2nd slider I want to invisible its thumb.Although I have clear the color of its thumb,It is visible to the user.How can I solve it ?

like image 971
harshiYL Avatar asked Dec 08 '12 13:12

harshiYL


1 Answers

Easy One :

[_slider setThumbImage:[UIImage new] forState:UIControlStateNormal];
like image 70
itsji10dra Avatar answered Sep 23 '22 01:09

itsji10dra