How to create a package

how do I package with resources like images and xibs to share between apps? I saw that there is a way to do this when creating a new project, but there must be a way to do it based on the finished project, right?

Thanks in advance -f

+2


a source to share


1 answer


On iPhoneOS, the package structure is very simple. Just create a folder and place all resources under it.

blah.bundle/
  foo.png
  bar.png
  baz.nib
  ...

      



But the apps are isolated, so the same bundle must be copied into each app.

+2


a source







All Articles