我似乎无法创建具有透明背景的NSScrollView。有谁知道为什么? 这是我的代码:
NSScrollView *textScroll = [[NSScrollView alloc] initWithFrame:CGRectMake(212, 203, 381, 55)];
[textScroll setBackgroundColor:[NSColor clearColor]];
[view addSubview:textScroll];
答案 0 :(得分:38)
我认为在你的情况下这应该有效:
[textScroll setDrawsBackground:NO];