Skip to content

Instantly share code, notes, and snippets.

@Yoloabdo
Created July 18, 2015 18:45
Show Gist options
  • Select an option

  • Save Yoloabdo/390be9399a79e3f350b5 to your computer and use it in GitHub Desktop.

Select an option

Save Yoloabdo/390be9399a79e3f350b5 to your computer and use it in GitHub Desktop.
Slider time change function
@IBAction func SliderChange(sender: UISlider) {
audioPlayer.stop()
var newTime = audioPlayerBar.value
audioPlayer.currentTime = NSTimeInterval(newTime)
audioPlayer.play()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment