管理文件的技术方式——xcode中的文件分组
我从过去 3 个月就开始从事 iPhone 开发工作。
通常,在插入视图控制器时,我只需右键单击“类和控制器”即可。添加新组。
&在该组中,我只需添加新视图控制器的 .h、.m 和 . .xib 文件。
在我提问之前,让我们看看我在我的项目中做了什么。
替代文本 http://img230.imageshack.us/img230/4191/picture4kz.png< /a>
我的问题是这样的
- 这是正确的方式吗?正确的方法是什么?
- 我们应该将所有 .xib 文件放在资源组下吗?
- (如果第二个问题的答案是肯定的)为什么我们必须将.xib文件放在资源下?
- 当我们有太多 .h、.m 和 .m 时,确切的分组方式是什么?项目中的.xib 文件?
- 当我们创建组时,为什么xcode实际上不创建目录?
I am in iPhone development since last 3 months.
Usually, While inserting a view Controller, I just right click on Classes & add new group.
& Within that group I just add my new view controller's .h, .m & .xib file.
Before my question, let's see what I have done in my project.
alt text http://img230.imageshack.us/img230/4191/picture4kz.png
My questions are something like this
- Is it in proper way? What is the proper way?
- Should we put all .xib files under resources group?
- (If 2nd question's answer is yes) Why we have to place .xib file under resources?
- What is the exact way of grouping, when we have too many .h, .m & .xib files in project?
- When we create group, why xcode don't creat a directory in actual?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Adrian Kosmaczewski 解释了经验丰富的 Xcode 开发人员所熟知的一种方法。这是我使用的方法,它“为所有东西找到一个地方,并将所有东西放在它的位置上”。希望您能找到您想要的文章(链接如下)。此外,他的博客是最好的博客之一。
http://kosmaczewski.net/2009/07/28 /xcode-projects 中的代码组织/
Adrian Kosmaczewski explains an approach known to experienced Xcode developers. It's the method I use and it "makes a place for everything and puts everything in its' place". Hope you find the article, linked below, what you're looking for. Moreover, his blog is one of the best around.
http://kosmaczewski.net/2009/07/28/code-organization-in-xcode-projects/
按顺序回答您的问题:
然后,文件夹之间是通过 !
To answer your items in order:
I hope that helps!