我总是像这样用NSProgressIndicator
创建微调器
let spinner = NSProgressIndicator()
spinner.style = .spinning
效果很好,但我最近发现了不推荐使用NSProgressIndicator.Style.spinning。我四处搜寻,但是现在还没有完全找到在macOS上创建微调器的推荐方法。谁能帮忙吗?
谢谢
/* 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;