NSDisclosureButtonCell
NSDisclosureButtonCell
- Subject: NSDisclosureButtonCell
- From: Gian Luca Cannata <email@hidden>
- Date: Wed, 18 Sep 2002 13:31:20 +0200
Hi, all
I have found in AppKit an undocumented class NSDisclosureButtonCell!!!!
With this class is possible to create an Disclosure Button in Jaguar
style.
NSDisclosureButtonCell *newCell;
NSImageCell *imageCell;
imageCell = [[NSImageCell alloc] init];
newCell = [[NSDisclosureButtonCell alloc] initWithCell:imageCell];
[newCell setTarget:self];
[newCell setAction:@selector(myAction:)];
[_myButton setCell:newCell];
[imageCell release];
[newCell release];
Woooooooooowwwwwwwwwwwwwww!!
_______________________________________________
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.