I have project in which have to customise UISlider element. I wondering if someone knows how to change, or is it possible to change height of UISlide
UISlider
UISlide
U can easily get it done by subclassing UISlider. see following code
class CustomUISlider : UISlider { override func trackRectForBounds(bounds: CGRect) -> CGRect { //set your bounds here return bounds } }