I'm subclassing NSMatrix to enable DnD in a 10.4 NSBrowser. The
dragout is fine, but I'm having trouble registering for drag ins. From
my understanding I need to need to call -registerForDraggedTypes: in
the NSMatrix's -initWithFrame: subclass method
The trouble is I cannot access the initWithFrame method of my NSMatrix
subclass. If I add the method it seems the parent NSMatrix class
initWithFrame seems to get called, but not my NSMatrixSubClass
initWithFrame.
I know this is a very basic Objective C question, I'm sorry for my
ignorance.