cocoaTouch/DetailViewController.h
author koda
Sat, 10 Apr 2010 20:48:09 +0000
changeset 3332 3c90a923f156
parent 3321 988e39ef3c20
child 3356 3ae3fccb439e
permissions -rw-r--r--
simplify the general settings and review minor stuff

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