Optional Framework Not Working (CoreAudioKit not on Simulator)
To get MIDI over Bluetooth working, I need to use the CoreAudioKit framework. This works perfectly, but I am not able to compile on the simulator. Making the framework "optional" doesn't help, error is ld: framework not found CoreAudioKit I think it should work according to the docs Deleting the framework allows my code to compile I've got this in code, which is why I can delete the framework without issues. #if !TARGET_IPHONE_SIMULATOR #import <CoreAudioKit/CoreAudioKit.h> #endif How can I get this optional compilation to work? Nate I actually would have thought that would work, but I think