NSStatusItem中的模糊文本

时间:2011-01-27 19:29:02

标签: cocoa nsstatusitem

我正在启动时显示statusItem,如下所示:

theItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain];

 NSString *theString = [textField stringValue];
 (textField.stringValue = theString);

    [theItem setTitle:theString];
    [theItem setHighlightMode:YES];

文字看起来很模糊。如何清理文本外观?

感谢。

这是一个屏幕截图,顶部是数字菜单栏时钟,底部是NSStatusItem标题:

Digital Clock on top, NSStatusItem title on bottom

2 个答案:

答案 0 :(得分:1)

您是否尝试将文字绘制到图像中并在NSStatusItem中使用该图像?

答案 1 :(得分:0)

对我来说很好看。

test status bar with "testing.…" in text

好吧,不是“完美”,但更多的是关于不均匀缩放而不是“模糊”。这也是你所看到的吗?