cocoaTouch/DetailViewController.h
author koda
Thu, 08 Apr 2010 22:45:18 +0000
changeset 3325 652a8ebdf667
parent 3321 988e39ef3c20
child 3356 3ae3fccb439e
permissions -rw-r--r--
moved around team creation add flags support add forts support need to find another way to save on file

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