I still can’t get the idea that when I create a new Group in XCode, and build the project, and then return back to finder and notice that the group does not exist but any file to be created under this group will appear in the project’s directory in finder but that file is alone without being under any group.
(note: I’m not talking about this directory: /Users/username/Library/Application Support/iPhone Simulator/4.3/Applications/uuid/…)
1) can anyone explain why project’s directory hierarchy in finder is different from the project’s directory hierarchy in XCode ?
2) how can I make the two hierarchies looks like exactly the same between XCode and Finder? so when I create a new Group in future I can see it in finder.
thanks in advance.
Currently you cannot see the group you create in
Xcodein finder. Its just a logical entity for you to organise your projects in a better way. Assuming you will be using xcode to make all the changes(including version control)you can use that categorisation and make sense out of it in Xcode.However you always have the option of creating a folder in finder(
your project workspace) and create files and save them in that folder using Xcode. This is particularly helpful for viewing organized code while browsing through the file system. Also you can group files into folders which you can then use across projects.So basically it boils down to what your use case is. As for me i am happy using xcode. I usually create a directory to hold images and copy directories for libraries into my project folder so that there is
clean organisationin the file system too.