有人研究过怎么查看编译过的nib文件的信息吗?求助。。。
最近在研究别人的应用。 打开app包,看到有MainWindow.nib文件,想研究下这里面是如何组织的。
用xcode打开,没内容。
用ibtool
ibtool --export-strings-file file.strings MainWindow.nib
报错
<key>description</key> <string>The document "MainWindow.nib" could not be opened. Interface Builder cannot open compiled nibs.</string>
网上查了,说可以用plutil 转换部分内容
plutil -convert xml1 -o - MainWindow.nib
还是报错
MainWindow.nib: Property List error: Unexpected character N at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.
有人研究过怎么查看编译过的nib文件的信息吗?求助。。。