When adding EZAudio to my swift project using CocoaPods, I get a compiler error that says:
Could not build Objective-C module 'EZAudio'
My Podfile is this:
platform :ios, '9'
use_frameworks!
pod 'CorePlot'
pod 'SWRevealViewController'
pod 'EZAudio'
I add it to a swift file like so:
import EZAudio
I am not using a bridging header. Does anybody have any insight into why this is happening?