此代码播放声音:
NSSound *sound = [[NSSound alloc] initWithContentsOfFile:@"/Users/alex/test.ogg"
byReference:NO];
[sound play];
此代码不会:
NSData *song = [testingResultsData objectAtIndex:0];
[song writeToFile:@"/Users/alex/test.ogg" atomically:YES];
NSSound *sound = [[NSSound alloc] initWithData:song];
[sound play];
两种情况都是相同的内容;唯一的区别是它是从磁盘上的文件中获取还是直接从NSData
获取。