I have to do AVPlayer with UISlider. But there is a problem. I know how to make a slider gray and blue, but I don't know how to add on slider this light blue line, which shows progress of loading track 
Code for default left line:
self.tintColor = .blue
self.maximumTrackTintColor = .gray
self.minimumValue = minValue
self.value = currentValue
self.maximumValue = maxValue
How to control light blue line? How to add it?
As of me UISlider doesn't have any property that can resolve your problem. I've achieved the same
UISliderby making some customisation.Just place your
UISliderimmediately on top of yourUIProgressViewand make them the same size in Interface Builder place.On a
UISliderthe background horizontal line is called the track, the trick is to make it invisible. We do this with a transparent PNG and the UISlider methodssetMinimumTrackImage()andsetMaximumTrackImage().