如何在可可中的应用程序停靠图标上绘制Mac旋转等待光标
我想为我的可可应用程序绘制带有旋转等待光标的动画停靠图标。 请告诉我如何绘制旋转的等待光标或者我在 mac 上在哪里找到光标文件。
谢谢
I want to draw animated dock icon with spinning wait cursor for my cocoa app.
Please let me know how i can draw the spinning wait cursor or where did i find the cursor file on mac.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要将光标放在光标上以外的任何地方。如果让用户认为他们的鼠标已锁定,那就太糟糕了。
创建一个显示应用程序图标的视图,将 NSProgressIndicator 创建为它的子视图,并使图标视图成为应用程序 Dock 磁贴的视图。
Don't put cursors anywhere but on the cursor. It would be really bad to make the user think their mouse has locked up.
Make a view that displays your application's icon, make an NSProgressIndicator a subview of it, and make the icon view the view of your application's Dock tile.