0

我正在使用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];

但它具有相同的效果。

有想法该怎么解决这个吗?

4

1 回答 1

0

我下载了代码并运行了示例,原始代码提供的微调器中没有圆角。

我注意到您的图像中包含微调器的视图也有圆角?您是否在该方法中使用了支持图层的视图setCornerRadius:

如果是这样,看起来微调器子视图也具有该属性集,因为它看起来像微调器和您的包含视图具有相同大小的圆角。

尝试专门将微调器视图的角半径设置为 0?

于 2014-01-26T01:50:25.047 回答