2 #import "ITButtonCell.h"
5 @implementation ITButton
8 /*************************************************************************/
10 #pragma mark INITIALIZATION METHODS
11 /*************************************************************************/
15 if ( self == [ITButton class] ) {
16 [self setCellClass:[ITButtonCell class]];
22 return [ITButtonCell class];
25 - (id)initWithCoder:(NSCoder *)coder
27 if ( ( self = [super initWithCoder:coder] ) ) {
28 ITButtonCell *cell = [[ITButtonCell alloc] init];