Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've an app using low level CoreAudio C functions, usually located under /Volumes/Xcode/Xcode.app/Contents/Developer/Extras/CoreAudio/PublicUtility/. Just installed Xcode 4.3.1 and iOS 5.1 and Public Utility seems gone away. My missing files are: CADebugMacros.h CAMath.h CAStreamBasicDescription.cpp CAStreamBasicDescription.h Anyone knows if these files have been removed from this last release or should I just copy the files from previous Xcode version? CoreAudio Public Utility has been there since iOS 2 (at least).

Ty!

share|improve this question
I don;t have them in the SDK but they are in the Apple examples SpeakHere and AurioTouch2 - in an iPublicUtility folder – skinnyTOD Mar 20 '12 at 13:57
Ty TOD, I have'em too. But they used to come updated with every SDK new version. I'll try with the files from the previous SDK. – Martha Mar 20 '12 at 14:36

2 Answers

up vote 9 down vote accepted

This is explained in the Xcode 4.3 what's new documentation.

Choose this menu:

Xcode > Open Developer Tool > More Developer Tools...

and download "Audio Tools for Xcode".

share|improve this answer
Kurt, exactly as you stated. Works like a charm. Ty!! – Martha Mar 20 '12 at 18:26

Better place to get them is directly from the Apple Sample Code Reference Library.

http://developer.apple.com/library/ios/#samplecode/CoreAudioUtilityClasses/Introduction/Intro.html

Sample code links in the RefLib. also provides versioning and modification history information which is helpful allowing you to stay current if there's any bug fixes with these sources.

Apple appears to be updating all their Audio samples to contain whatever subset of public utility is required by each sample, but if you want it all (and I suggest that you do as it's oozing with goodness), grab it from the above link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.