author | koda |
Fri, 02 Apr 2010 22:44:14 +0000 | |
changeset 3270 | 9bd8fb1707b9 |
parent 3250 | d5cd1a617123 |
permissions | -rw-r--r-- |
3113 | 1 |
// |
2 |
// MasterViewController.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 |
@class DetailViewController; |
|
13 |
||
14 |
@interface MasterViewController : UITableViewController { |
|
15 |
DetailViewController *detailViewController; |
|
16 |
NSArray *optionList; |
|
17 |
} |
|
18 |
||
19 |
@property (nonatomic, retain) IBOutlet DetailViewController *detailViewController; |
|
20 |
@property (nonatomic, retain) NSArray *optionList; |
|
21 |
||
3250
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
22 |
-(IBAction) dismissSplitView; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
23 |
|
3113 | 24 |
@end |