0

我正在使用 NSProgressIndicator,它只在主事件循环之后重绘。然而,微调器永远不会启动或停止。我正在使用以下代码来启动进度指示器:

 [progressIndicator startAnimating];

它也被合成,并正确包含在 .h 和 .m 文件中。我已经在 IB 中连接了它。

该代码似乎不适用于进度条或微调器。

4

1 回答 1

6

startAnimating不是一种方法NSProgressIndicator。尝试:

[progressIndicator startAnimation:self];

另请查看setUsesThreadedAnimation:,这可能会对您有所帮助。

于 2010-09-04T16:50:42.867 回答