diff -r f1bbe35ddb83 -r 2829ea0dd47c cocoaTouch/iPad/DetailViewController.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cocoaTouch/iPad/DetailViewController.h Sat Mar 27 16:57:18 2010 +0000 @@ -0,0 +1,27 @@ +// +// DetailViewController.h +// HedgewarsMobile +// +// Created by Vittorio on 27/03/10. +// Copyright 2010 __MyCompanyName__. All rights reserved. +// + +#import + + +@interface DetailViewController : UIViewController { + UIPopoverController *popoverController; + UINavigationBar *navigationBar; + + id detailItem; + UILabel *test; +} + +@property (nonatomic, retain) UIPopoverController *popoverController; +@property (nonatomic, retain) IBOutlet UINavigationBar *navigationBar; +@property (nonatomic, retain) IBOutlet UILabel *test; +@property (nonatomic, retain) id detailItem; + +-(IBAction) dismissSplitView; + +@end