2cupsOfTech
2cupsOfTech

Reputation: 6083

nib files visible in iOS8 Cocoa Touch Framework

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.

.nib files visible in .framework seen with Finder

Upvotes: 0

Views: 96

Answers (1)

Grady Player
Grady Player

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

Related Questions