cocoaTouch/DetailViewController.h
author smxx
Mon, 12 Apr 2010 20:58:32 +0000
changeset 3337 75e7455c69ed
parent 3321 988e39ef3c20
child 3356 3ae3fccb439e
permissions -rw-r--r--
Engine: * Moved "enum member to string" functions to uMisc * Print gear types in debug log instead of ordinals

//
//  DetailViewController.h
//  HedgewarsMobile
//
//  Created by Vittorio on 27/03/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>

#ifdef __IPHONE_3_2
@interface DetailViewController : UITableViewController <UIPopoverControllerDelegate, UISplitViewControllerDelegate> {
#else
@interface DetailViewController : UITableViewController {
#endif
    id popoverController;
    NSArray *controllers;
}

// used in iphone version
-(IBAction) dismissSplitView;

@property (nonatomic, retain) id popoverController;
@property (nonatomic, retain) NSArray * controllers;

@end