有没有办法获取已编码故事板文件的NSCoder中使用的密钥?我看到PSTCollectionView使用了很多未记录的密钥,他们是如何得到它们的?
具体来说,我想要设置UITableViewController在IB中自动使用UIRefreshControl时使用的密钥。
答案 0 :(得分:0)
XIB(XML Interface Builder)是一个用XML创建的文件。
您可以使用textEdit或wordPad打开它。所以,问题解决了一半!!!
读取xml的xib / nib文件并解析它。从那里读取所有密钥。
剪切了MainMenu.xib
<?xml version="1.0" encoding="UTF-8"?> <archive
type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
<data> <int key="IBDocument.SystemTarget">1080</int>
<string key="IBDocument.SystemVersion">11D50</string>
<string key="IBDocument.InterfaceBuilderVersion">2457</string>
<string key="IBDocument.AppKitVersion">1138.32</string>
<string key="IBDocument.HIToolboxVersion">568.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">2457</string>
</object>