Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I add an MP3 to my iOS/Xcode project?

I am trying to program an app that includes several songs. Looking through various tutorials they just say to "add your file to the project" or some such so I have tried adding my MP3 to various places (including xcassets) but it is never copied to the output of my project or played.

In other words, this always return nil:

let path = NSBundle.mainBundle().pathForResource(audioFile, ofType: "mp3")

This seems dead simple stuff and it is driving me crazy that it won't simply play the file. I have tried it in the root directory, a directory that I create named "resources" (since several sources say to "add it to resources"), and even in the xcassets. However, it always comes back nil.

Note that I am in Xcode 7 (the beta) developing for the latest iOS and using Swift 2. The file is about 53MB in size.

Any help is very much appreciated!

like image 458
Mark Brittingham Avatar asked Nov 29 '15 20:11

Mark Brittingham


1 Answers

It really is that simple. The only thing that you might have missed is that audioFile should really only contain the name, not the file extension. But beyond that it is as easy as dragging the file into your project and you can play it.

In the following gif I have code that plays an audio file and does some manipulation to answer this question. But basically it just loads an audio file the same way you try it.

  • I run the program at first to show that is in fact crashing without the file
  • Then I dragged the file into Xcode
  • Running the app again works as expected

Screencast

like image 69
luk2302 Avatar answered Oct 31 '22 16:10

luk2302