Disclaimer: This question is an extension of this question.
I am trying to populate a table in NSPopover. (As seen in the picture)
Problem:
I can not make a transparent background for NSTextField.
Strange, it works fine if a view is attached to NSWindow
(The names in the left window have a transparent background, but the same look as in NSPopover does not show a transparent background for the NSText field.) 
Is this a bug in NSPopover or am I doing something wrong?
This is my code for creating table cells
func tableView(tableView: NSTableView, viewForTableColumn tableColumn: NSTableColumn?, row: Int) -> NSView? { var cell = NSTableCellView(frame: NSMakeRect(0, 0, 100, 40)) var textField = NSTextField(frame: NSMakeRect(0, 0, 50, 20))
cocoa nstableview macos nspopover
Kaunteya
source share