Is there a way to create a subfolder in the resource folder in Xcode?

This may be too simple a question, but I'm new to programming for iPhone with Xcode. My project uses a lot of image files for UIImageView animation arrays. I add all the images to my resource file, but the resource folder becomes a little cumbersome. Is there a way to add subfolders to resources that don't change or ruin any of the code I already created? Thank you for your time.

+4
source share
2 answers

You can select a group of files in the Xcode organizer, right-click on them and select "Group" from the pop-up context menu. This will create a subfolder containing them. This subfolder is organizational and will not exist in your .app.

+4
source

Right-click and choose Add> New Group.

0
source

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


All Articles