What is the internal structure of the XML Builder XML file?

What is the internal structure of the .xib file used by Interface Builder ?

+3
source share
2 answers

Well, the xib file is the XML file used by the interface constructor.

The header usually contains something similar to this:

<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">

They then consist of "object" entries that represent the objects contained in nib.

<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
0
source

Right Click File xib> Open As> Source Code

As a code, you can see the whole file xib.

0

Source: https://habr.com/ru/post/1756283/


All Articles