NSMenuItem 中的 NSTextField

发布于 2024-08-13 22:42:02 字数 566 浏览 4 评论 0原文

您好,我正在编写一个小应用程序,用于在 twitter.com 上发布 twitts 我设法在时钟和电池监视器旁边创建状态栏图标,但现在我堆积了...

我想添加菜单项文本区域最大长度为 140 个字符,(4-5 行文本输入字段) 像聚光灯但多行的东西

(顺便说一句,我有工人阶级,可以在 Twitter 上放置和获取 twitts,并将其作为 NSString 返回,并且它可以工作)

是否可能,或者我必须实现我自己的“东西”,它出现,或者我可以使用菜单项,

我添加像这样的菜单项:

  menuItem = [menu addItemWithTitle:@"Menu Item Tilte"
                             action:@selector(CallbackFunction:)
                      keyEquivalent:@""];

 [menuItem setTarget:self];

下一个问题将是自动生成带有后续twitts的菜单项,但我认为这不会成为问题(它类似于wifi状态栏图标,它自动填充列表)

Hi am writing small app for posting twitts on twitter.com
I manage to create statusbar icon next to clock and battery monitor, but now I am stacked...

I wanted to add menu item text area max length of 140 chars, (4-5 rows text input field)
something like spotlight but multi-rows

(BTW I have got working class, to put and get twitts on twitter, and return its as a NSString, and it works)

Is it possible, or I have to implement my own "something" which appears, or I can use menu items

I add menuitems like this:

  menuItem = [menu addItemWithTitle:@"Menu Item Tilte"
                             action:@selector(CallbackFunction:)
                      keyEquivalent:@""];

 [menuItem setTarget:self];

next problem will be auto-generating menu items with followed twitts, but I think it won't be a problem (it is similar to wifi statusbar icon, which populates list automatically)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒废 2024-08-20 22:42:02

您可以将任何 NSView 嵌入到菜单中。请参阅 NSMenuItem 的 -setView: 方法。

You can embed any NSView into a menu. See the -setView: method of NSMenuItem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文