如何弃用Style.spinning,如何在macOS Catalina上正确添加微调器?

问题描述 投票:1回答:1

我总是像这样用NSProgressIndicator创建微调器

let spinner = NSProgressIndicator()
spinner.style = .spinning

效果很好,但我最近发现了不推荐使用NSProgressIndicator.Style.spinning。我四处搜寻,但是现在还没有完全找到在macOS上创建微调器的推荐方法。谁能帮忙吗?

谢谢

swift macos cocoa appkit nsprogressindicator
1个回答
1
投票
/* Please instead use the more modern versions of these constants. */ static const NSProgressIndicatorStyle NSProgressIndicatorBarStyle API_DEPRECATED_WITH_REPLACEMENT("NSProgressIndicatorStyleBar", macos(10.2,10.14)) = NSProgressIndicatorStyleBar; static const NSProgressIndicatorStyle NSProgressIndicatorSpinningStyle API_DEPRECATED_WITH_REPLACEMENT("NSProgressIndicatorStyleSpinning", macos(10.2,10.14)) = NSProgressIndicatorStyleSpinning;
© www.soinside.com 2019 - 2024. All rights reserved.