3113
|
1 |
//
|
|
2 |
// DetailViewController.h
|
|
3 |
// HedgewarsMobile
|
|
4 |
//
|
|
5 |
// Created by Vittorio on 27/03/10.
|
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
7 |
//
|
|
8 |
|
|
9 |
#import <UIKit/UIKit.h>
|
|
10 |
|
|
11 |
|
|
12 |
@interface DetailViewController : UIViewController <UIPopoverControllerDelegate, UISplitViewControllerDelegate> {
|
|
13 |
UIPopoverController *popoverController;
|
|
14 |
UINavigationBar *navigationBar;
|
|
15 |
|
|
16 |
id detailItem;
|
|
17 |
UILabel *test;
|
|
18 |
}
|
|
19 |
|
|
20 |
@property (nonatomic, retain) UIPopoverController *popoverController;
|
|
21 |
@property (nonatomic, retain) IBOutlet UINavigationBar *navigationBar;
|
|
22 |
@property (nonatomic, retain) IBOutlet UILabel *test;
|
|
23 |
@property (nonatomic, retain) id detailItem;
|
|
24 |
|
|
25 |
-(IBAction) dismissSplitView;
|
|
26 |
|
|
27 |
@end
|