NSStatusItem 中的动画
我正在为 OS X 编写一个状态栏应用程序,我想在等待下载文件时使用动画“加载”gif 作为图标。
将 NSImage 中的 gif 传递给 NSStatusItem 的 setImage: 方法将状态栏图标设置为图像的第一帧,但不进行动画处理。我将 NSImage 放入 NSImageView 并将其传递给 setView: 方法,但状态项根本没有显示。
我该怎么做?
I'm writing a status bar application for OS X and I want to use an animated 'loading' gif as the icon when waiting to download a file.
Passing the gif in an NSImage to the setImage:
method of the NSStatusItem set the status bar icon as the first frame of the image, but was not animated. I put the NSImage in an NSImageView and passed that to the setView:
method but then the status item didn't show up at all.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可能想使用 Spinner 样式的 NSProgressIndicator 并对其使用 setView 。我和你有同样的问题。
you might wanna use the NSProgressIndicator of spinner style and use setView to it. I'm having the same problem as you.