I have a static library project, in which now I need to include some resources, so I want to turn it into a framework. I need to include those resources inside framework, without the need to rely on separate resource bundle, for several reasons:
-to prevent the resources from tampering with
-for simplicity of usage of my framework
Now, in every tutorial I've read, the resources were supplied as separate bundle. This answer states that it isn't possible, but it's almost 5 years old. Has anything changed in that matter? Is it possible to include resources inside framework, without exposing them to framework's users? I am using Objective-C and deployment target is iOS 9.