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.
是否可以在 iOS 上播放 MIDI 文件?这将是我试图播放的MIDI 格式文件。
哪个框架/库可用于在 iOS 上播放 MIDI 文件?
简短回答:使用 CoreMIDI 框架读取文件,使用 Core Audio 框架来发出声音(您还需要添加 AudioToolbox 框架)。
这是有关该主题的教程
基本上,您可以使用 AudioToolbox 框架中的 MusicPlayer 对象来读取您的文件,然后使用 MusicPlayer 在 AUSampler 音频单元上播放音符。