在Xcode IDE中,当我在默认的Classes组中添加一个名为“Organizer”的新组时,它就会被创建。但是,当我在Finder中实际看到该文件夹时,该新组织管理器未显示为文件夹。
实际上我想维护特定结构中的源,即它在XCode视图中的存在方式。
我该怎么做才能实现这个目标?
答案 0 :(得分:30)
您应该在Finder中创建所有必需的文件夹,然后将它们添加到项目中(右键单击 - >将文件添加到XYZ项目)。添加文件时,选项应如下所示:
UPD: Xcode 9最终支持群组操作的自动文件夹创建和文件重新排序!
答案 1 :(得分:1)
如果要在默认类组中添加名为Organizer
的新组,则无法在finder中看到物理文件夹。要创建物理文件夹,您应该执行以下步骤,
1. Prepare folder structure with files in it.
2. Drag that folder into xcode i.e. project navigation pan.
3. Check the box " Copy items into destination group's folder (if needed) "
4. Select " Create groups for any added folders "
完成此操作后,您将在Finder中获取文件夹。现在,如果你想添加新文件,那么只需
1. Right click on folder and click " Add files to < Project_Name >"
2. Select proper file
3. Check the box " Copy items into destination group's folder (if needed) "
4. Select " Create groups for any added folders "
5. Finally click to add
您将获得添加了新文件的文件夹。
注意:请记住,您会看到黄色文件夹。
谢谢。