| *** file inconsistency: read '@', expecting 'C'FYI: In order to successfully subclass an NSTableView (possibly other classes as well) from java inside a NIB created by Interface Builder you must include this method in your subclass:protected MySubclass(NSCoder decoder, long token)I discovered this after a couple hours of searching. Apple computer would really be doing everyone a favor if their mailing list archives were searchable on google.{
 super(decoder, token);
 }
 
 I am trying to find a workaround for my NSTableViews always crashing on me. My experience has been that NSTableViews are seriously too bugged for use. From OS 10.0-10.3.1 inclusive. I use 2 one them in my cocoa-java Risk boardgame clone.
 
 
 
 
 |