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)

link|improve this question

62% accept rate
feedback

1 Answer

up vote 6 down vote accepted

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.