cocoaTouch/SingleTeamViewController.h
changeset 3374 0d522416d97f
parent 3340 96dd168b080b
equal deleted inserted replaced
3373:c1ff724a5c34 3374:0d522416d97f
    17 @interface SingleTeamViewController : UITableViewController <UITextFieldDelegate> {
    17 @interface SingleTeamViewController : UITableViewController <UITextFieldDelegate> {
    18     NSMutableDictionary *teamDictionary;
    18     NSMutableDictionary *teamDictionary;
    19     
    19     
    20     UITextField *textFieldBeingEdited;
    20     UITextField *textFieldBeingEdited;
    21     NSString *teamName;
    21     NSString *teamName;
    22     NSArray *hatArray;
    22     UIImage *normalHogSprite;
    23     
    23     
    24     NSArray *secondaryItems;
    24     NSArray *secondaryItems;
    25     BOOL isWriteNeeded;
    25     BOOL isWriteNeeded;
    26     
    26     
    27     HogHatViewController *hogHatViewController;
    27     HogHatViewController *hogHatViewController;
    33 }
    33 }
    34 
    34 
    35 @property (nonatomic,retain) NSMutableDictionary *teamDictionary;
    35 @property (nonatomic,retain) NSMutableDictionary *teamDictionary;
    36 @property (nonatomic,retain) UITextField *textFieldBeingEdited;
    36 @property (nonatomic,retain) UITextField *textFieldBeingEdited;
    37 @property (nonatomic,retain) NSString *teamName;
    37 @property (nonatomic,retain) NSString *teamName;
    38 @property (nonatomic,retain) NSArray *hatArray;
    38 @property (nonatomic,retain) UIImage *normalHogSprite;
    39 @property (nonatomic,retain) NSArray *secondaryItems;
    39 @property (nonatomic,retain) NSArray *secondaryItems;
    40 
    40 
    41 -(void) writeFile;
    41 -(void) writeFile;
    42 -(void) setWriteNeeded;
    42 -(void) setWriteNeeded;
    43 
    43