0

I'm not sure if this can be done with frameworks.

I'm in the planning stage for an app written in swift. This will be one of my first ventures into swift.

How can I add nib files and asset catalogs to some kind of library which I can share among different applications?

Jules
  • 7,568
  • 14
  • 102
  • 186

1 Answers1

1

The framework is designed to store resources (nib's, images and etc) along with lib files.

Here is discussed framework vs static lib difference: Required Framework vs Static Library

Check here how to add resources to framework: Where to put .xib file inside framework project?

DoN1cK
  • 595
  • 7
  • 22