我在启动时显示statusItem,如下所示:
theItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain];
NSString *theString = [textField stringValue];
(textField.stringValue = theString);
[theItem setTitle:theString];
[theItem setHighlightMode:YES];
Run Code Online (Sandbox Code Playgroud)
文字看起来很模糊.如何清理文本的外观?
谢谢.
保罗
这是一个屏幕截图,顶部是数字菜单栏时钟,底部是NSStatusItem标题:

我想NSTextView在我的应用程序中添加一个对象,并添加一个操作,打开位于textView中应用程序包中的.txt文件.另外 - 我希望可以选择编辑和保存已编辑的文档而无需重命名.所以标准保存,不保存为.
处理这个问题的最佳方法是什么?