syedhali / EZAudio

An iOS and macOS audio visualization framework built upon Core Audio useful for anyone doing real-time, low-latency audio processing and visualizations.
Other
4.94k stars 822 forks source link

use_frameworks! causes "file not found" error #287

Open osrl opened 8 years ago

osrl commented 8 years ago

I use use_frameworks! in my podfile. But xcode complains with EZAudioiOS.m, EZAudioOSX.m files

What I did to solve this issue was modifying these files and replace the line with #import "EZAudio.h" .

npalamar commented 8 years ago

I use static frameworks too and have the same issue. Is the fix above is a correct way to resolve this kind of problem?

osrl commented 8 years ago

I don't know if this is the correct way either, but it works fine. It would be good if someone explained this.

don-inkscreen commented 8 years ago

Had this issue as well and fixed using npalamar's solution. Not a great workaround for multi-developer projects though.

danfsd commented 8 years ago

Happened to me too. I'm using Xcode 7.3 and CocoaPods 0.38.2. Changing the import directive to #import "EZAudio.h" fixed the issue for the moment.

Any updates on the solving of this issue?