I'm using files in my app and I was wondering, since all user will be using the sames files (for my example), i'm providing them in the app bundle.
Now, my question is :
Is it faster to access it straight from the bundle or should I save it as a file and then access that file only later on ? We're talking about sound files that will be played many many times and that will never be removed from the app.
I'm really just talking about performance, not "code beauty". It's pretty much the same code-wise anyway.