author | unc0rr |
Thu, 06 May 2010 18:01:04 +0000 | |
changeset 3437 | 858105ae769c |
parent 3374 | 0d522416d97f |
child 3490 | 016b3172b645 |
permissions | -rw-r--r-- |
3325 | 1 |
// |
3352 | 2 |
// FortsViewController.h |
3325 | 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 FortsViewController : UITableViewController { |
|
13 |
NSDictionary *teamDictionary; |
|
14 |
||
15 |
NSArray *fortArray; |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3352
diff
changeset
|
16 |
// NSArray *fortSprites; |
3325 | 17 |
NSIndexPath *lastIndexPath; |
18 |
} |
|
19 |
||
20 |
@property (nonatomic,retain) NSDictionary * teamDictionary; |
|
21 |
@property (nonatomic,retain) NSArray *fortArray; |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3352
diff
changeset
|
22 |
//@property (nonatomic,retain) NSArray *fortSprites; |
3325 | 23 |
@property (nonatomic,retain) NSIndexPath *lastIndexPath; |
24 |
@end |