NSSearchField menu question
NSSearchField menu question
- Subject: NSSearchField menu question
- From: Aaron Patterson <email@hidden>
- Date: Sun, 21 Dec 2003 21:02:13 -0800
I've been trying to add a custom menu to my NSSearchField. I was able to get
the menu to show up, with my "Hello World" text when I run the application.
However, for some reason, I can't select the menu item. It just appears
greyed out. Can someone provide me with any insight? Thanks!
Here is a snippet of code I have so far:
- (IBAction)search:(id)sender {
NSLog(@"Search: %@", [sender stringValue]);
}
- (void)awakeFromNib {
NSMenu * cellMenu = [[NSMenu alloc] initWithTitle:@"Search Menu"];
NSMenuItem *item1;
id searchCell = [searchField cell];
item1 = [[NSMenuItem alloc] initWithTitle:@"Hello World!"
action:@selector(testSelector:) keyEquivalent:@""];
[cellMenu insertItem:item1 atIndex:0];
[item1 release];
[searchCell setSearchMenuTemplate:cellMenu];
}
- testSelector:(id)sender {
NSLog(@"Selected Hello World");
return self;
}
--Aaron
_______________________________________________
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.