What is the internal structure of a .xib file used by Interface Builder?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- how do you prevent page scroll in textarea on mobi
- Custom UITableview cell accessibility not working
相关文章
- 现在使用swift开发ios应用好还是swift?
- Visual Studio Code, MAC OS X, OmniSharp server is
- Could I create “Call” button in HTML 5 IPhone appl
- xcode 4 garbage collection removed?
- IntelliJ IDEA can't open projects or add SDK o
- Automator: How do I use the Choose from List actio
- Xcode: Is there a way to change line spacing (UI L
- Unable to process app at this time due to a genera
Well a xib file is an XML file used by Interface Builder.
The header usually contains something similar to this:
Then they consist of 'object' entries which represent objects contained within the nib.
Right click a
xib
file > Open As > Source CodeYou'll be able to see the entire
xib
file as code.