New clear Objective-C

I have come here to chew bubblegum and write code ... and I'm all out of bubblegum.

Saturday, June 10, 2006

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:

At 6/10/2006 2:32 PM, David Young said...

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.

 
At 6/10/2006 11:02 PM, cjwl said...

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.

 
At 7/13/2006 5:58 AM, Anonymous said...

Please file a bug!

 

Post a Comment

<< Home