What is the difference between NIB and XIB Interface Builder file formats?

前端 未结 5 959
再見小時候
再見小時候 2020-12-12 18:04

What is difference between nib and xib in Interface Builder files?

5条回答
  •  暖寄归人
    2020-12-12 18:30

    XIBs are flat files rather than being a bundle. This makes it easier for SCM(source control management) systems to deal with. When you compile your app, the XIB is compiled into a NIB file for inclusion in your app.

    The compiled NIB that is included in the app bundle is no longer editable in Interface Builder and is much smaller than the equivalent XIB or legacy NIB file.

提交回复
热议问题