Reputation: 17072
I have a project MY_PROJECT. In xcode, I "see" all the classes under "Classes" folder but when I check on the filesystem I see the classes (.h / .m) beeing distributed in different folders:
How comes all the classes are not on the same Classes folder on the filesystem ?
Upvotes: 0
Views: 133
Reputation: 13146
XCode organises the the source files in "groups" that are independent of the file system. Because I find that this leads to a mess, I always create folders in the file system and use import with option "create groups for imported files and folder automatically". Thus groups and folders are in sync.
Upvotes: 3