I would like to have the NSTextView background and the window itself of TextEdit transparent but I'm not really sure how to do this. Some hints would be great.
modify TextEdit so that the NSTextView has transparent background. how?
2k Views Asked by Albert At
3
There are 3 best solutions below
1

Easy! The text view is created programmatically in the DocumentWindowController class, so just find the points where it is created (in the methods setHasMultiplePages: and addPage) and simply insert the code:
[textView setDrawsBackground:NO];
...to prevent the textView from drawing it's default white background. The light gray color you then see is being drawn by the text view's enclosing scrollview, which you can change in the DocumentWindow NIB.
EDIT: If you don't want the Scroll View to draw its background, uncheck "Draws Background," at which point you will just see the window's default gray background (drawn by it's content view)
This code seems to work: