equal
deleted
inserted
replaced
|
1 // |
|
2 // SplitViewRootController.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 @class MasterViewController; |
|
12 @class DetailViewController; |
|
13 @interface SplitViewRootController : UIViewController { |
|
14 id splitViewRootController; //UISplitViewController |
|
15 MasterViewController *masterViewController; |
|
16 DetailViewController *detailViewController; |
|
17 } |
|
18 |
|
19 @property (nonatomic,retain) IBOutlet id splitViewRootController; |
|
20 @property (nonatomic,retain) IBOutlet MasterViewController *masterViewController; |
|
21 @property (nonatomic,retain) IBOutlet DetailViewController *detailViewController; |
|
22 @end |