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;
|
3321
|
15 |
#ifdef __IPHONE_3_2
|
3305
|
16 |
@interface DetailViewController : UITableViewController <UIPopoverControllerDelegate, UISplitViewControllerDelegate> {
|
|
17 |
#else
|
|
18 |
@interface DetailViewController : UITableViewController {
|
|
19 |
#endif
|
|
20 |
id popoverController;
|
3356
|
21 |
NSArray *controllerNames;
|
|
22 |
GeneralSettingsViewController *generalSettingsViewController;
|
|
23 |
TeamSettingsViewController *teamSettingsViewController;
|
|
24 |
WeaponSettingsViewController *weaponSettingsViewController;
|
|
25 |
SchemeSettingsViewController *schemeSettingsViewController;
|
3305
|
26 |
}
|
|
27 |
|
|
28 |
// used in iphone version
|
|
29 |
-(IBAction) dismissSplitView;
|
|
30 |
|
|
31 |
@property (nonatomic, retain) id popoverController;
|
3356
|
32 |
@property (nonatomic, retain) NSArray *controllerNames;
|
3305
|
33 |
|
|
34 |
@end
|