Re: Creating menu's at runtime
Re: Creating menu's at runtime
- Subject: Re: Creating menu's at runtime
- From: Nick Zitzmann <email@hidden>
- Date: Mon, 10 Feb 2003 14:42:26 -0800
On Monday, February 10, 2003, at 05:40 AM, Flemming Bengtsson wrote:
aSubMenu = [[NSMenu alloc] init];
[aSubMenu initWithTitle:@"Art"];
You're calling -init twice in those two lines. The following should
work better:
aSubMenu = [[NSMenu alloc] initWithTitle:@"Art"];
Nick Zitzmann
AIM/iChat: dragonsdontsleep
Check out my software page:
http://dreamless.home.attbi.com/
#include <stdsignature.h>
_______________________________________________
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.