author | smxx |
Sat, 01 May 2010 20:02:20 +0000 | |
changeset 3390 | 1d4926d10a9e |
parent 3374 | 0d522416d97f |
permissions | -rw-r--r-- |
3325 | 1 |
// |
2 |
// FlagsViewController.h |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 08/04/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import <UIKit/UIKit.h> |
|
10 |
||
11 |
||
12 |
@interface FlagsViewController : UITableViewController { |
|
13 |
NSDictionary *teamDictionary; |
|
14 |
||
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3325
diff
changeset
|
15 |
NSArray *flagArray; |
3325 | 16 |
NSIndexPath *lastIndexPath; |
17 |
} |
|
18 |
||
19 |
@property (nonatomic,retain) NSDictionary * teamDictionary; |
|
20 |
@property (nonatomic,retain) NSArray *flagArray; |
|
21 |
@property (nonatomic,retain) NSIndexPath *lastIndexPath; |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3325
diff
changeset
|
22 |
|
3325 | 23 |
@end |