我正在使用https://github.com/kelan/yrk-spinning-progress-indicator来获得一个白色的微调器。请注意,这不是 NSProgressIndicator 的子类,而是自定义的 NSView。
问题是这个自定义视图的角落显示为白色,而不仅仅是一个清晰的背景。您可以在这张图片中看到这一点:
这是我的代码:
[_statusProgressIndicator setColor:[NSColor whiteColor]];
[_statusProgressIndicator setIndeterminate:YES];
[_statusProgressIndicator setBackgroundColor:[NSColor clearColor]];
[_statusProgressIndicator setDrawsBackground:YES];
[_statusProgressIndicator startAnimation:self];
我也试过:
[_statusProgressIndicator setDrawsBackground:NO];
但它具有相同的效果。
有想法该怎么解决这个吗?