See the UISlider class reference. You want to set setThumbImage:forState: as well as setMinimumTrackImage:forState: and setMaximumTrackImage:forState:. Use the same images for the minimum and maximum track images, and use UIControlStateNormal for the state.
Below code will be in ViewWillAppear...
See the UISlider class reference. You want to set
setThumbImage:forState:
as well assetMinimumTrackImage:forState:
andsetMaximumTrackImage:forState:
. Use the same images for the minimum and maximum track images, and useUIControlStateNormal
for the state.