-1

I'd like to create components which have a similar structure (all of them having a controller class, a XIB file and language resources). I've figured I could use bundles for this purpose. However, it seems there are some limitations on iOS (for example you cannot use loadable bundles which pretty much correspond to what I'd like to do). For me this would be important for better organisation/packaging of code and better reusability provided by such components.

Does anyone have a good pointer to an arcticle, etc dealing with similar issues?

Janos
  • 1,987
  • 3
  • 17
  • 24
  • As the two down votes show it may be a bit too general question. Yes, for sure, but I'd need some general advise - I haven't found anything usable so far. I'd like to somehow package stuff (code and resources) together such that it creates a new namespace. Is this possible at all? – Janos Aug 04 '14 at 12:50

1 Answers1

0

If you can wait for iOS8 this is made easier as you can now use Frameworks, which are an easier way of bundling code and resources.

These are still tied to the app at build time, so you can't use them for plug-ins at run time, but it should make sharing code and resources between projects simpler.

Anorak
  • 3,096
  • 1
  • 14
  • 11