删除 NSStatusItem 视图
我通过 setView: 设置了 NSStatusItem 的视图,如果我想的话,以后如何删除它?这可能吗?谢谢。
One I set a view for NSStatusItem by setView:, how can i remove it later on if I want to? Is this even possible? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要删除它,只需调用:
即使您通过 setTitle 或 setImage 定义状态项,此方法也有效。
To remove it, just call:
This works even when you define your status item through setTitle or setImage.