cocoaTouch/FlagsViewController.h
author koda
Thu, 17 Jun 2010 19:57:51 +0200
changeset 3513 f589230fa21b
parent 3374 0d522416d97f
permissions -rw-r--r--
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive) add rotation for iphone build too make the ifrontend work again with 3.0 sdk reworked openalbridge following most of an old implementation by Smaxx and making it more modular -- now sources are limited but the memory extension and cleanup is todo nil'd many variables in engine that were causing intialization problems
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3325
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     1
//
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     2
//  FlagsViewController.h
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     3
//  HedgewarsMobile
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     4
//
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     5
//  Created by Vittorio on 08/04/10.
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     7
//
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     8
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    10
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    11
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    12
@interface FlagsViewController : UITableViewController {
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    13
    NSDictionary *teamDictionary;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    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
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    16
    NSIndexPath *lastIndexPath;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    17
}
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    18
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    19
@property (nonatomic,retain) NSDictionary * teamDictionary;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    20
@property (nonatomic,retain) NSArray *flagArray;
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    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
652a8ebdf667 moved around team creation
koda
parents:
diff changeset
    23
@end