窗口阻止执行 Cocoa
我的问题是,当我提出一个表示 NSTableView
中的值的方法时,我的应用程序的窗口会阻塞。我想使用 NSProgressIndicator(微调器)制作动画,但我的窗口被阻止并且微调器不显示动画。 我想有人能给我任何提示吗?我在线程或类似的东西中思考过,但我不太确定如何解决这个问题。
My problem is that my application's window blocks when I raise a method that represents values in a NSTableView
. I want to do an animation with a NSProgressIndicator
(spinner), but my window is blocked and spinner doesn't show animation.
I want if anybody can give me any hint? I thought in threads or something like this, but I'm not pretty sure how to solve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你是对的,你需要某种多线程。幸运的是,在 Cocoa 中对线程进行简单的操作是相当容易的。
您应该查看NSOperation 和NSOperationQueue。
您可能会发现这篇博文很有用:使用 nsoperation 为您的应用程序快速充电
You're right, you need some kind of multithreading. Fortunately, it's rather easy to do simple operations on threads in Cocoa.
You should look into NSOperation and NSOperationQueue.
You may find this blogpost useful: turbo charging your apps with nsoperation