获取 NSStatusItem 的长度
我的应用程序中有一个 NSStatusItem,可以配置为显示一些文本。该文本可以更改,问题是,每次更改长度时,整个状态项都会更改其长度,这会导致“宽度闪烁”。
我考虑过将状态项的长度设置为 NSVariableStatusItemLength,插入最长的可能文本,获取长度,然后将其设置为状态项的常量长度。但是,看起来 NSStatusItem
的 length
函数对此完全无用,因为它只是返回 NSVariableStatusItemLength
而不是实际长度。
那么,是否有另一种方法可以预先计算 NSStatusItem 需要多长时间来保存一些文本和可选的图标?例如,是图标 &字体/大小保证在所有 Mac 系统上都相同,因此我可以简单地“测量”我的系统上的最佳长度?
I have a NSStatusItem in my app that can be configured to show some text. This text can change, and the problem is, every time it changes length, the whole status item changes its length, which causes "width flicker".
I thought about setting the length of the status item to NSVariableStatusItemLength
, inserting the longest possible text, get the length back, and then set that as a constant length for the status item. However, it looks like the length
function of NSStatusItem
is entirely useless for this, as it simply returns back NSVariableStatusItemLength
instead of the actual length.
So, is there another way to precalculate how long a NSStatusItem needs to be to hold some text and optionally an icon? For instance, is the icon & font face / size guaranteed to be the same on all Mac systems, so I could simply "measure" an optimal length on my system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取长度的解决方法是使用
[NSImage size].width
获取状态项中任何图标的宽度,然后使用[NSString sizeWithAttributes:nil].width
code> 获取字符串的宽度。添加填充物以调味。另一种方法是使用私有 API,设置最长的字符串,然后获取宽度,如下所示:
A workaround to get the length is to use
[NSImage size].width
to get the width of any icons in the status item, and then use[NSString sizeWithAttributes:nil].width
to get the width of the string. Add padding to taste.Another way, using private APIs, is to set the longest string, and then grab the width as follows: