Creating a framework with xib files inside

Is it possible to create a library/framework with xib files inside it ?

Same as MessageUI framework. Need some reference examples.

Thanks in Advance.

Upvotes: 0

Views: 213

Answers (1)

neilco
neilco

Reputation: 8012

No, it is not possible to include xibs inside a static library/framework. You should create a bundle target that will contain all the xibs, image assets, etc that the library will need. In your library, you must then reference the resources from this bundle.

Upvotes: 1

Related Questions