3305
|
1 |
//
|
|
2 |
// SingleTeamViewController.h
|
|
3 |
// HedgewarsMobile
|
|
4 |
//
|
|
5 |
// Created by Vittorio on 02/04/10.
|
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
7 |
//
|
|
8 |
|
|
9 |
#import <UIKit/UIKit.h>
|
|
10 |
|
|
11 |
@class HogHatViewController;
|
3329
|
12 |
@interface SingleTeamViewController : UITableViewController <UITextFieldDelegate> {
|
3315
|
13 |
NSMutableDictionary *teamDictionary;
|
3329
|
14 |
|
|
15 |
UITextField *textFieldBeingEdited;
|
3330
|
16 |
NSString *teamName;
|
3315
|
17 |
NSArray *hatArray;
|
3312
|
18 |
|
3325
|
19 |
NSArray *secondaryItems;
|
|
20 |
NSArray *secondaryControllers;
|
3315
|
21 |
BOOL isWriteNeeded;
|
3325
|
22 |
|
3305
|
23 |
HogHatViewController *hogChildController;
|
|
24 |
}
|
|
25 |
|
3315
|
26 |
@property (nonatomic,retain) NSMutableDictionary *teamDictionary;
|
3329
|
27 |
@property (nonatomic,retain) UITextField *textFieldBeingEdited;
|
3330
|
28 |
@property (nonatomic,retain) NSString *teamName;
|
3315
|
29 |
@property (nonatomic,retain) NSArray *hatArray;
|
3305
|
30 |
@property (nonatomic,retain) NSArray *secondaryItems;
|
3325
|
31 |
@property (nonatomic,retain) NSArray *secondaryControllers;
|
3330
|
32 |
|
|
33 |
-(void) writeFile;
|
|
34 |
-(void) setWriteNeeded;
|
|
35 |
|
3305
|
36 |
@end
|