as the title says I created a library/framework quite a while ago. Now I am back at it to restructure the project -- to make several frameworks out of it. the idea is to have our whole project split up into several pieces(components).
So I copied the whole framework project and renamed it to something different. then I went on and deleted all the stuff from the project I dont want in this framework --at this very example-- all the business objects and the data access layer classes were both in this project-- but I want the data access layer classes to be included in their own framework.
when i go on and build this framework -- lets call it the business-object-framework (boFramework) -- it builds alright. but as soon as I reference it from the data-access-layer-framework (daFramework) I get a conflict saying it has this reference already or duplicates are not allowed (or such..) and true -- when I look into the framework, I can see lots of the da-classes I deleted from the boFramework-project. I poke around with this for quite a while now but i have no idea where xcode gets the information of these deleted files. there are not in the project, not in svn or somewhere else. if I search for them in the project or the filesystem i dont get a result. I "cleaned" it dozen of times-- with no effect. as soon as I build the framework again it will include these header files. I really dont know where Xcode holds on to these references -- how can i get rid of these headers I dont want in this project??
did anyone experience the same issue?? any suggestions appreciated- thanks! I give up!!