I followed this excellent tutorial to set up to build a framework I'm building for an iOS app.
http://spin.atomicobject.com/2011/12/13/building-a-universal-framework-for-ios/
I have everything working pretty well except for one little detail. Sometimes, it can take several attempts at building the project before all the header files are copied into the final framework.
Occasionally I'll hit "Build" and the Headers folder for the framework is completely empty at the end. Sometimes it will have 90% of the headers, but not all. Once in a while I get lucky and they all seem to be there.
What would cause this and how do I correct it?
Update: So far my only solution is to just keep rebuilding the framework and eventually it copies all the headers the way I expect it to. Still looking for a better answer though.