Custom UISlider like the Music app
问题 I've built a custom slider to show the progress of a music track playing and to allow scrubbing within the track. Both function fine, but there is a slight lag (and jumpy movement) once dragging has stopped and the slider is repositioned - The Apple Music app slider is seamless. _scrubberSlider = [[ScrubberSlider alloc] initWithFrame:CGRectMake(0, 0, 300, 30)]; _scrubberSlider.continuous = YES; _scrubberSlider.maximumValue = 1.0f; _scrubberSlider.minimumValue = 0.0f; [_scrubberSlider