如何创建捆绑包
如何创建包含图像和 xib 等资源的捆绑包以在应用程序之间共享?我看到创建新项目时有一种方法可以做到这一点,但必须有一种方法可以基于已完成的项目来做到这一点,对吧?
提前致谢
–f
how do I create a bundle with resources like images and xibs to share it between apps? I saw that there's a way to do it when creating a new project, but there must be a way to do it based on a finished project, right?
Thanks in advance
–f
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 iPhoneOS 上,捆绑包结构非常简单。就一个make文件夹,把所有的资源都放在它下面。
但应用程序是沙盒的,因此必须将相同的包复制到每个应用程序中。
On iPhoneOS the bundle structure is very simple. Just a make folder and put all the resources under it.
But apps are sandboxed so the same bundle must be copied into each app.