• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Creating Menu Items Programmatically.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Creating Menu Items Programmatically.


  • Subject: Creating Menu Items Programmatically.
  • From: Steve <email@hidden>
  • Date: Thu, 13 Feb 2003 11:23:37 +0000

Hi,

I'm trying to populate a valid NSMenu (called menuInPort) with menu items created in a loop.
If I use an empty string, I have established that the menu items are being created Ok.

1) What's the most convenient way to just turn the (long)portNum in to a string that initWithTitle will accept?
(I don't really have to write NSNumber and formatting code do I??)

2) The selector (which is part of the same controller class) is not being called. I have an idea that the newly created items might mistakenly think the First Responder is the target.



long portNum;
NSMenuItem *menItem;
for( portNum=1; portNum <=numInputs; portNum ++)
{
menItem = [NSMenuItem alloc];
[menItem initWithTitle :portNum:@selector(setInputPort) keyEquivalent:@""];
[menuInPort addItem:menItem];
}
//--------------------------------
- (IBAction) setInputPort:(id)sender
{
// Do stuff.
}

Thanks


Steve
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

  • Follow-Ups:
    • Re: Creating Menu Items Programmatically.
      • From: Peter Robinson <email@hidden>
    • Re: Creating Menu Items Programmatically.
      • From: Nick Zitzmann <email@hidden>
    • Re: Creating Menu Items Programmatically.
      • From: Stéphane Sudre <email@hidden>
  • Prev by Date: [Newbie] NSOutlineView and icons
  • Next by Date: Re: Creating Menu Items Programmatically.
  • Previous by thread: Re: [Newbie] NSOutlineView and icons
  • Next by thread: Re: Creating Menu Items Programmatically.
  • Index(es):
    • Date
    • Thread