I alloc+init my cursor with this line:
cursor = [[NSCursor alloc] initWithImage:[NSImage
imageNamed:@"cursor.tiff"] hotSpot:NSMakePoint(8,0)];
And I set the cursor's rect and such here (I have the custom cursor
appear when the mouse enters the image view, and the arrow cursor
returns when the mouse exits the view):
NSRect rect = NSMakeRect(0, 0, WINDWIDTH-1, WINDHEIGHT-1);
The [cursor set] call here may be unnecessary. In any case, is there
a problem with how I've set up the cursor, or is there some method I
can call at the end of the function that prints text (like I said,
the problem is with the final [textField setEditable:NO] call).