16 lines
305 B
Objective-C
16 lines
305 B
Objective-C
#import "ActionPopUpButton.h"
|
|
#import "ActionPopUpButtonCell.h"
|
|
|
|
@implementation ActionPopUpButton
|
|
|
|
- (id) initWithCoder: (NSCoder *) coder
|
|
{
|
|
if (self = [super initWithCoder: coder])
|
|
{
|
|
[self setCell: [[ActionPopUpButtonCell alloc] initTextCell: @"" pullsDown: YES]];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|