我正在使用NSProgressIndicator,它只在主事件循环后重绘。然而,旋转器永远不会启动或停止。我使用以下代码启动进度指示器:
[progressIndicator startAnimating];
它也被合成,并正确包含在.h和.m文件中。我已将其连接到IB。
代码似乎不适用于进度条或微调器。
答案 0 :(得分:6)
startAnimating
不是NSProgressIndicator
的方法。尝试:
[progressIndicator startAnimation:self];
另请查看setUsesThreadedAnimation:
,这可能对您有帮助。