Какао, когда окно прозрачное, вкладка оставит текст в окне, когда оно проведено - PullRequest
0 голосов
/ 14 сентября 2018

Just Window и TableView

self.window.backgroundColor = [NSColor clearColor];
self.window.opaque = NO;
self.window.contentView.wantsLayer = YES;
self.window.contentView.layer.backgroundColor = [NSColor colorWithWhite:0.8 alpha:0.6].CGColor;
self.tableView.delegate = self;
self.tableView.dataSource = self;
self.tableView.backgroundColor = [NSColor clearColor];

tableCellView

NSTableCellView *cellView = [tableView makeViewWithIdentifier:@"cell" owner:self];
if (!cellView) {
    cellView = [[NSTableCellView alloc] initWithFrame:NSMakeRect(0, 0, 0, 40)];
    cellView.identifier = @"cell";
    NSTextField *label = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 200, 40)];
    [cellView addSubview:label];
    label.stringValue = @"testcell";
    label.backgroundColor = [NSColor clearColor];
    label.bordered = NO;
    label.textColor = [NSColor whiteColor];
}
return cellView;

Продолжительность

При скольжении

Как я могу удалить текст?

...