在 iPhone 开发中使用捆绑包有哪些优势?
iPhone开发过程中使用bundle有什么好处?
ps 我看到许多 SDK(例如 Facebook SDK、Three20)都使用捆绑包来包含图像和其他内容,但我不确定为什么要这样做。使用主包和新创建的包有什么区别?
What is the advantage of using bundle during iPhone development?
p.s. I see many SDK like Facebook SDK, Three20 are using bundles to contain images and other contents, but I am not sure why should I do so. What is the difference between using main bundle and a newly created bundle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这真的很简单。您使用捆绑包就像使用名称空间一样。新创建的捆绑包中的文件可能具有与主捆绑包中的文件同名的文件。 Facebook SDK 和 Three20 有自己的捆绑包,因此您可以在主捆绑包中拥有任何您想要的文件,而不会存在冲突的风险。
It's quite simple really. You use bundles just like you would use name spaces. Files in the newly created bundle could have files with the same names as files in the main bundle. Facebook SDK and Three20 have their own bundles, so that you can have any files you want in the main bundle without risking conflicts.