Is it possible to create an iOS application folder in Xcode?

I wonder if it is possible to structure the folder of my application?

Now I have every file under the root folder.

Is it possible to create a new folder inside the one called VC and put all my VC files into it? Is there anything else I should remember when, if I reorganize my application files? e.g. file paths, etc.

+4
source share
2 answers

You can do this very well, and in fact it is good practice to organize your Xcode project navigator in a similar folder structure as in your file system; it really helps.

, , - New Group.

enter image description here

:

enter image description here

, . . .

:

enter image description here

PS: , .. Xcode , .

+4

, :

1)

2) VC

3) xcode

4) vc

5)

6) ...

7)

+1

Source: https://habr.com/ru/post/1612912/


All Articles