cocoaTouch/DetailViewController.h
author smxx
Fri, 16 Apr 2010 16:04:41 +0000
changeset 3350 5cd02aafc612
parent 3321 988e39ef3c20
child 3356 3ae3fccb439e
permissions -rw-r--r--
Engine: * Save screenshots to "Screenshots" sub directory * Added new ultimate weapon: Perform Beathoven's deadly sonata during the Piano Strike (this time for real! still missing some sounds/assets)

//
//  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