NSAffineTransform turning into NSCFString
NSAffineTransform turning into NSCFString
- Subject: NSAffineTransform turning into NSCFString
- From: Kyle Mandli <email@hidden>
- Date: Wed, 27 Jun 2001 10:05:43 -0500
I am trying to use NSAffineTransform to transform points. I have
created an instance of NSAffineTransform and initialize it in the init
method of the class which is a extension of NSView. During the
mouseDown method I try to append a new transformation to the instance of
NSAffineTransform in the class but it gives me -[NSCFString
transformPoint:]: selector not recognized. I checked it out with GDB
and it shows that the NSAffineTransform is fine in every function except
mouseDown. I even checked the address being used and it does not
change. When I 'po' the transform in mouseDown and in no other method
it gives out English, German, Italian, etc... or a dictionary of
supported types. I am totally at a loss for this one. All the other
methods in the class can see the transform but the mouseDown sees it as
a NSCFString. Any help on this would be greatly appreciated.
Kyle