Cannot find <coreaudiokit / coreaudiokit.h> in ios8 xcode6

I am trying to get MIDI on BLE to work, as discussed at session 501 at WWDC 2014.

I get a "file not found" error when trying to #import CoreAudioKit / CoreAudioKit.h framework

I enabled the framework in the build menu and tried to put the #import line in the .h or .m ViewController file.

It recognizes and compiles CoreBluetooth / CoreBluetooth.h without problems.

This is a new installation of Xcode 6, downloaded yesterday (September 13, 2014)

I feel that Apple has not turned on the switch for CoreAudioKit for iOS.

Any instructions regarding what I am doing wrong will be greatly appreciated.

Thanks Ken

+4
2

CoreAudioKit iOS Simulator. ,

+10

( midi over bluetooth), :

#ifdef __APPLE__
#include "TargetConditionals.h"

#if TARGET_IPHONE_SIMULATOR
@compatibility_alias CABTMIDICentralViewController UIViewController;
#elif TARGET_OS_IPHONE
#import <CoreAudioKit/CoreAudioKit.h>

#endif
#endif

, CireAudioKit (OS X).

+4

All Articles