cocoaTouch/otherSrc/SquareButtonView.h
changeset 3364 e5403e2bf02c
parent 3361 cfc6cd502f85
equal deleted inserted replaced
3363:bcd6d76db4f7 3364:e5403e2bf02c
    11 
    11 
    12 @interface SquareButtonView : UIButton {
    12 @interface SquareButtonView : UIButton {
    13     NSInteger colorIndex;
    13     NSInteger colorIndex;
    14     NSUInteger selectedColor;
    14     NSUInteger selectedColor;
    15     NSArray *colorArray;
    15     NSArray *colorArray;
       
    16     NSMutableDictionary *ownerDictionary;
    16 }
    17 }
    17 
    18 
    18 @property (nonatomic,retain) NSArray *colorArray;
    19 @property (nonatomic,retain) NSArray *colorArray;
       
    20 @property (nonatomic) NSUInteger selectedColor;
       
    21 @property (nonatomic,retain) NSMutableDictionary *ownerDictionary;
    19 
    22 
    20 -(void) nextColor;
    23 -(void) nextColor;
       
    24 -(void) selectColor:(NSUInteger) color;
    21 
    25 
    22 @end
    26 @end