I am building a MP3 player for iOS that plays audio files hosted on the web. I want to offer the ability to play the files offline so I have the files downloading using ASIH
I got AVPlayer to work with local URL by prepending file:// to my local url
AVPlayer
file://
NSURL * localURL = [NSURL URLWithString:[@"file://" stringByAppendingString:YOUR_LOCAL_URL]]; AVPlayer * player = [[AVPlayer alloc] initWithURL:localURL];