【发布时间】:2015-10-12 23:53:21
【问题描述】:
要让 MIDI 通过蓝牙工作,我需要使用 CoreAudioKit 框架。这完美地工作,但我无法在模拟器上编译。
- 使框架“可选”没有帮助,错误是
ld: framework not found CoreAudioKit
我认为它应该按照the docs工作
- 删除框架允许我的代码编译
我已经在代码中得到了这个,这就是为什么我可以毫无问题地删除框架。
#if !TARGET_IPHONE_SIMULATOR
#import <CoreAudioKit/CoreAudioKit.h>
#endif
我怎样才能让这个可选的编译工作?
【问题讨论】:
标签: ios ios-simulator coremidi