keyedobjects.nib typos
While working on .nib unarchiving code I ran across a spelling error and a typo in Apple's keys.
NSBrowser:
<key>NSPreferedColumnWidth</key>
<real>100</real>
NSTextView:
<key>NSMinize</key>
<dict>
<key>CF$UID</key>
<integer>61</integer>
</dict>
Should be NSMinSize.
Should I file a bug? :) I should file a bug on Property List Editor though, it can't handle keyed archive property lists.

3 Comments:
Property List Editor is pretty weak. It'd be nice someday if Apple did a generic version which could handle all the various types of archive which Cocoa can spit out: binary NS(Keyed)Archiver stores, nibs, maybe even Core Data stuff as well.
The thing is, both binary and text keyed archives are just property lists in standard property list format. The keyed archiving system layers it's own mechanisms on top of the plist system. For some reason Property List Editor pukes when the property list is mildly complicated, so annoying.
Please file a bug!
Post a Comment
<< Home