2

我正在构建一个应用程序,该应用程序具有托管在 Apple 服务器上的非消耗性应用内购买。我已经成功下载了我的应用内购买,但是当我将它们保存到文档目录时,我之后似乎无法找到或访问它们。

这是我用来从下载的 contentURL 下载文件的函数。下载完成后调用它,传入 download.contentURL 以将其在缓存中的位置移动到文档文件夹中。

-(void)downloadFromURL: (NSURL *) temporaryURL {
    NSLog(@"The download's contentURL is %@", temporaryURL.absoluteString);
    NSString *folderName = [[temporaryURL path] lastPathComponent];
    NSArray *pathArr = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *folder = [pathArr objectAtIndex:0];

    NSString *filePath = [folder stringByAppendingPathComponent:folderName];
    NSURL *fileURL = [NSURL fileURLWithPath:filePath];

    NSError *writeError = nil;
    NSData *downloadData = [[NSData alloc] initWithContentsOfURL:temporaryURL];
    [downloadData writeToURL: fileURL options:0 error:&writeError];

    if( writeError) {
    NSLog(@"Error in writing file %@' : \n %@ ", filePath , writeError);
    return;
    }
    NSLog(@"File successfully downloaded. Url is %@",fileURL.absoluteString);
    myFileURL = fileURL;
}

myFileURL 是一个全局变量,稍后会调用它来初始化 AVAudioPlayer,但是当我调用

    NSFileManager *fileManager = [NSFileManager defaultManager];
    if (![fileManager fileExistsAtPath:[myFileURL path]]){
        NSLog(@"File DOES NOT exist at that url");
    } else{
        NSLog(@"File DOES exist at that url");
    }

它说该路径中不存在文件。任何想法或简单的方法来编写和访问从苹果服务器下载的应用购买内容?我还尝试将“/Contents/filename.mp3”添加到 URL 的末尾,但无济于事。

4

1 回答 1

5

使用此处找到的代码解决:http: //xinsight.ca/blog/iap-content-download-in-ios6

于 2013-06-12T00:23:12.157 回答