Reputation: 6083
I am creating an iOS8 Cocoa Touch framework. The final .framework directory is showing nib files. Is that expected behavior?
I want to hide as much code details as possible except .h files.
Upvotes: 0
Views: 96
Reputation: 14539
nib... (Next Interface Builder) files are what your xibs are converted to for the runtime system... (they used to be the only thing... before apple introduced the xibs)... frameworks don't need to have them, but if your framework has UI elements it is probably a very convenient way to package them...
if you make all of your UI elements programmatically, then you won't need them at all
Upvotes: 1