iOS下载一个mp3,以便稍后在应用中使用

时间:2015-03-18 14:46:32

标签: ios iphone ipad cocoa-touch

我是否可以从网站下载mp3,以便稍后在我的应用中使用,而不会阻止我的应用执行的其余部分

我一直在寻找的是同步方式。

我想将mp3缓存在一个数组中。我最多只能获得5或6个短片。

有人可以帮忙吗?

2 个答案:

答案 0 :(得分:7)

是的,你可以。

您可以使用NSURLConnection并将收到的数据保存到临时NSData变量中,完成后将其写入磁盘。

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    _mutableData = [NSMutableData new];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    if (_mutableData) {
        [_mutableData appendData:data];
    }
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    dispatch_queue_t bgGlobalQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0);
    dispatch_async(bgGlobalQueue, {
        [_mutableData writeToFile:_filePath atomically:YES];
    });
}

注意:您应该将所有相应的错误处理添加到上面的代码中,不要“按原样”使用它。

然后,您可以使用文件路径创建NSURL并使用该URL播放mp3文件。

NSURL *url = [NSURL fileURLWithPath:_filePath];

答案 1 :(得分:5)

最现代的方法是使用NSURLSession。它内置了下载功能。请使用NSURLSessionDownloadTask

<强>夫特

let url = NSURL(string:"http://example.com/file.mp3")!

let task =  NSURLSession.sharedSession().downloadTaskWithURL(url) { fileURL, response, error in
    // fileURL is the URL of the downloaded file in a temporary location.
    // You must move this to a location of your choosing
}

task.resume()

<强>目标C

NSURL *url = [NSURL URLWithString:@"http://example.com/file.mp3"];

NSURLSessionDownloadTask *task = [[NSURLSession sharedSession] downloadTaskWithURL:url completionHandler:^(NSURL *fileURL, NSURLResponse *response, NSError *error) {
    // fileURL is the URL of the downloaded file in a temporary location.
    // You must move this to a location of your choosing
}];

[task resume];