author | koda |
Thu, 17 Jun 2010 19:57:51 +0200 | |
changeset 3513 | f589230fa21b |
parent 3490 | 016b3172b645 |
permissions | -rw-r--r-- |
3305 | 1 |
// |
2 |
// DetailViewController.h |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 27/03/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import <UIKit/UIKit.h> |
|
10 |
||
3356 | 11 |
@class GeneralSettingsViewController; |
12 |
@class TeamSettingsViewController; |
|
13 |
@class WeaponSettingsViewController; |
|
14 |
@class SchemeSettingsViewController; |
|
3490 | 15 |
|
3513
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3490
diff
changeset
|
16 |
@interface DetailViewController : UITableViewController |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3490
diff
changeset
|
17 |
#if __IPHONE_3_2 |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3490
diff
changeset
|
18 |
<UISplitViewControllerDelegate, UIPopoverControllerDelegate> |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3490
diff
changeset
|
19 |
#endif |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3490
diff
changeset
|
20 |
{ |
3356 | 21 |
NSArray *controllerNames; |
3490 | 22 |
|
3356 | 23 |
GeneralSettingsViewController *generalSettingsViewController; |
24 |
TeamSettingsViewController *teamSettingsViewController; |
|
25 |
WeaponSettingsViewController *weaponSettingsViewController; |
|
26 |
SchemeSettingsViewController *schemeSettingsViewController; |
|
3490 | 27 |
UIPopoverController *popoverController; |
3305 | 28 |
} |
29 |
||
30 |
// used in iphone version |
|
31 |
-(IBAction) dismissSplitView; |
|
32 |
||
3356 | 33 |
@property (nonatomic, retain) NSArray *controllerNames; |
3490 | 34 |
@property (nonatomic,retain) UIPopoverController *popoverController; |
3305 | 35 |
|
36 |
@end |