cocoaTouch/SingleTeamViewController.h
changeset 3330 987ec27b6042
parent 3329 d8e41ee0b3ae
child 3332 3c90a923f156
equal deleted inserted replaced
3329:d8e41ee0b3ae 3330:987ec27b6042
    12 @interface SingleTeamViewController : UITableViewController <UITextFieldDelegate> {
    12 @interface SingleTeamViewController : UITableViewController <UITextFieldDelegate> {
    13     NSMutableDictionary *teamDictionary;
    13     NSMutableDictionary *teamDictionary;
    14     
    14     
    15     UITextField *textFieldBeingEdited;
    15     UITextField *textFieldBeingEdited;
    16     NSInteger selectedHog;
    16     NSInteger selectedHog;
       
    17     NSString *teamName;
    17     NSArray *hatArray;
    18     NSArray *hatArray;
    18     
    19     
    19     NSArray *secondaryItems;
    20     NSArray *secondaryItems;
    20     NSArray *secondaryControllers;
    21     NSArray *secondaryControllers;
    21     BOOL isWriteNeeded;
    22     BOOL isWriteNeeded;
    23     HogHatViewController *hogChildController;
    24     HogHatViewController *hogChildController;
    24 }
    25 }
    25 
    26 
    26 @property (nonatomic,retain) NSMutableDictionary *teamDictionary;
    27 @property (nonatomic,retain) NSMutableDictionary *teamDictionary;
    27 @property (nonatomic,retain) UITextField *textFieldBeingEdited;
    28 @property (nonatomic,retain) UITextField *textFieldBeingEdited;
       
    29 @property (nonatomic,retain) NSString *teamName;
    28 @property (nonatomic,retain) NSArray *hatArray;
    30 @property (nonatomic,retain) NSArray *hatArray;
    29 @property (nonatomic,retain) NSArray *secondaryItems;
    31 @property (nonatomic,retain) NSArray *secondaryItems;
    30 @property (nonatomic,retain) NSArray *secondaryControllers;
    32 @property (nonatomic,retain) NSArray *secondaryControllers;
       
    33 
       
    34 -(void) writeFile;
       
    35 -(void) setWriteNeeded;
       
    36 
    31 @end
    37 @end