进度 - NSDocument 应用程序上的加载窗口
当文件加载到 NSDocument 应用程序中时,我需要显示一个带有进度条的 NSWindow。 “加载进度窗口”的 makeKeyAndOrderFront: 似乎没有在 readFromURL:ofType:error: 内调用,因为当时应用程序可能尚未完全初始化。在 NSDocument 应用程序中加载加载进度窗口的最佳实践是什么
I need to show an NSWindow with a progress bar in it while the file is being loaded in an NSDocument application. The makeKeyAndOrderFront:
for the "loading progress window" does not seem to be invoked inside readFromURL:ofType:error:
since, probably, the app is not fully initialized at that time. What should be the best practice to load a loading progress window in an NSDocument application
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过一番研究,我发现这个解决方案对我来说效果很好。
After some research, I found this solution That worked fine for me.