NSData* data = [NSData dataWithBytes:bytes length:sizeof(bytes)];
NSString * docsDir = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
// Build the path to the database file
NSString * filePath = [[NSString alloc] initWithString:
[docsDir stringByAppendingPathComponent: @"background.wav"]];
[data writeToFile:filePath atomically:YES];
原文地址:http://blog.51cto.com/318881/2104286