- HubPages»
- Technology»
- Communications»
- Smartphones»
- iPhone
iOS - Play a music or sound with AVAudioPlayer in Swift
Wanting to know how to play background music files and sounds with AVAudioPlayer property (from AVFoundation framework) in Swift? Then you've got to the right place.
We’ve setup a sample project that looks like this:
Ok so let’s start by adding AVFoundation into Linked Frameworks and Libraries section, in the XCode’s General tab. Click on the plus sign and start typing the name of the needed framework:
Next, you have to import it on the top of our .swift file, in order to make our app able to use it:
import AVFoundation
Now you have to create an instance of AVAudioPlayer, you can declare it as a global variable, so just type this line of code below your import statements:
var audioPlayer = AVAudioPlayer()
In our demo project we have also added a Label that will show our audio player status:
@IBOutlet weak var soundStatusLabel: UILabel!
All right, now we’ll see how to play our sound when tapping the Play Button:
@IBAction func playButton(sender: AnyObject) { var soundURL: NSURL = NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("mySound", ofType: "wav")!)! var error:NSError? audioPlayer = AVAudioPlayer(contentsOfURL: soundURL, error: &error) audioPlayer.prepareToPlay() audioPlayer.play() soundStatusLabel.text = "Sound is playing" }
Just a few lines of code to make the magic, isn’t it great?
Before going through the above method line by line, we need to drag a sound file into Supporting Files in XCode. It can be a .wav or .mp3 sound file, in our demo project we’ve used a .wav file and renamed it as “mySound“. Here’s what the play button's method does:
- This is our IBAction function.
- Here we initialize an url for our sound so XCode will get the sound file we want to play from its path, name and type.
- A simple NSError declaration, needed in case something will go wrong with playing the sound file.
- We tell our player object to get the sound file by the url previously declared.
- Prepare the framework to run
- And finally play our sound.
- Change text to our label accordingly to the status of the audio player.
Here’s the code for the Pause button instead:
@IBAction func pauseButton(sender: AnyObject) { audioPlayer.pause() soundStatusLabel.text = "Sound is on pause" }
- IBAction instance for the button
- Pause the audio player
- Update the status Label text
And finally our Stop button’s code:
@IBAction func stopButton(sender: AnyObject) { audioPlayer.stop() soundStatusLabel.text = "Sound has stopped playing" }
- IBAction instance
- Our audio player will stop playing music/sound
- Update the status label once again
Run your project and play with the buttons, enjoy your minimal music player.
Thanks for reading, and don't forget to check out our other tutorials!
© 2015 cubycode