pathForResource from URL

1k Views Asked by At

I have this code:

NSString *songPathForm = @"http://www.example.com/file.wav";

NSString *song = [[NSBundle mainBundle]pathForResource:songPathForm ofType:nil];

But song just ends up being null, what am I doing wrong?

3

There are 3 best solutions below

0
On

To play a sound for which you know the URL, you should use code similar to the following one:

NSSound *sound = [[NSSound alloc] initWithContentOfURL: [NSURL URLWithString:songPathForm] byReference:NO];
[sound play];
4
On

The pathForResource method works only for files inside a bundle. If you want to access a file at a external URL you could use dataWithContentsOfURL: in the NSData class for example.

0
On

A 'path' here is meant as a file path on the local file system. What you're giving to NSBundle is a URL. NSBundle is typically used to get files which are in the application itself (What you see when you select 'Show Package Contents' from the Finder). NSBunlde is expecting a relative file path also, not an absolute path (because you don't know where the app is).