Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我想使用 sqlite 数据库使用这么多声音文件。我用谷歌搜索了很多。所有人都说使用 blob。任何人都可以帮助我编写从 sqlite 数据库读取音频文件的代码吗?提前致谢
您可以将音频文件下载为 NSData,然后将其加载到 AVAudioPlayer
-(id)initWithData:(NSData *)data error:(NSError **)outError
答案取自这里