在构建期间在捆绑包中创建目录
我有一个对我来说似乎相当微不足道的问题,但几个小时后我没有得到线索:我需要在我的应用程序包中有一个包含图片(用于地图叠加的图块)的目录。我需要遍历该文件夹和子文件夹。
但是如何使用 Xcode 在捆绑包(我的意思是 .app 文件)中创建文件夹?我在 Finder 或 Xcode 中拥有的任何文件夹结构都不会进入应用程序包 (Xcode 4.2)。我知道这样做是可能的,因为 WWDC 中有一个示例“TileMap”以相同的方式执行此操作。
任何帮助表示赞赏。
I have a problem that seemed quite trivial to me, but since hours I don't get the clue: I need to have a directory within my app bundle that contains pictures (tiles for a map overlay). I need to iterate through that folder and the subfolders.
But how do I create a folder within the bundle (I mean the .app file) with Xcode? Any folder structures I have in the Finder or in Xcode won't make it into the app bundle (Xcode 4.2). I know it's possible to do so, because there is an example "TileMap" from the WWDC that does it the same way.
Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在 Xcode 中导入一个包含其树的文件夹,然后当导入窗口询问您时,选择:
“为任何添加的文件夹创建文件夹引用”单选按钮...
这样,该文件夹将像在主捆绑应用程序中一样被复制
just import a folder with it's tree in Xcode, and when the import window ask you, choose:
"create folder reference for any added folders" radio button...
this way that folder will be copied as it is in your main bundle app