author | unc0rr |
Sat, 03 Apr 2010 14:46:54 +0000 | |
changeset 3292 | db97b92367a4 |
parent 3270 | 9bd8fb1707b9 |
permissions | -rw-r--r-- |
3113 | 1 |
// |
2 |
// SplitViewRootController.m |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 27/03/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import "SplitViewRootController.h" |
|
10 |
#import "MasterViewController.h" |
|
11 |
#import "DetailViewController.h" |
|
12 |
||
13 |
@implementation SplitViewRootController |
|
14 |
@synthesize splitViewController, masterViewController, detailViewController; |
|
15 |
||
16 |
||
17 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
18 |
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight); |
|
19 |
} |
|
20 |
||
21 |
-(void) didReceiveMemoryWarning { |
|
22 |
// Releases the view if it doesn't have a superview. |
|
23 |
[super didReceiveMemoryWarning]; |
|
24 |
// Release any cached data, images, etc that aren't in use. |
|
25 |
} |
|
26 |
||
27 |
// load the view programmatically; we need a splitViewController that handles a MasterViewController |
|
28 |
// (which is just a UITableViewController) and a DetailViewController where we present options |
|
29 |
-(void) viewDidLoad { |
|
30 |
// init every possible controller |
|
31 |
splitViewController = [[UISplitViewController alloc] init]; |
|
3270 | 32 |
CGRect screensize = [[UIScreen mainScreen] bounds]; |
33 |
splitViewController.view.frame = CGRectMake(0, 0, screensize.size.height, screensize.size.width); |
|
3113 | 34 |
masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain]; |
3250
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
35 |
detailViewController = [[DetailViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
36 |
|
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
37 |
UINavigationController *mainNavController = [[UINavigationController alloc] initWithRootViewController:masterViewController]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
38 |
UINavigationController *detailedNavController = [[UINavigationController alloc] initWithRootViewController:detailViewController]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
39 |
|
3113 | 40 |
// set attributes |
41 |
masterViewController.detailViewController = detailViewController; |
|
3250
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
42 |
splitViewController.viewControllers = [NSArray arrayWithObjects: mainNavController, detailedNavController, nil]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
43 |
[mainNavController release]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
44 |
[detailedNavController release]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
45 |
|
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
46 |
splitViewController.delegate = detailViewController; |
3113 | 47 |
|
48 |
// add view to main controller |
|
49 |
[self.view addSubview:splitViewController.view]; |
|
3250
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
50 |
[detailViewController release]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
51 |
[masterViewController release]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
52 |
|
3113 | 53 |
[super viewDidLoad]; |
54 |
} |
|
55 |
||
56 |
-(void) dealloc { |
|
57 |
[detailViewController release]; |
|
58 |
[masterViewController release]; |
|
59 |
[splitViewController release]; |
|
60 |
[super dealloc]; |
|
61 |
} |
|
62 |
||
3250
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
63 |
#pragma mark - |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
64 |
#pragma mark additional methods as we're using a UINavigationController programmatically |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
65 |
// see http://davidebenini.it/2009/01/03/viewwillappear-not-being-called-inside-a-uinavigationcontroller/ |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
66 |
-(void) viewWillAppear:(BOOL)animated { |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
67 |
[super viewWillAppear:animated]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
68 |
[detailViewController.navigationController viewWillAppear:animated]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
69 |
} |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
70 |
|
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
71 |
-(void) viewWillDisappear:(BOOL)animated { |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
72 |
[super viewWillDisappear:animated]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
73 |
[detailViewController.navigationController viewWillDisappear:animated]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
74 |
} |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
75 |
|
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
76 |
-(void) viewDidAppear:(BOOL)animated { |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
77 |
[super viewDidLoad]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
78 |
[detailViewController.navigationController viewDidAppear:animated]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
79 |
} |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
80 |
|
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
81 |
-(void) viewDidDisappear:(BOOL)animated { |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
82 |
[super viewDidUnload]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
83 |
[detailViewController.navigationController viewDidDisappear:animated]; |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
84 |
} |
d5cd1a617123
intial support for team configuration on the ifrontend
koda
parents:
3113
diff
changeset
|
85 |
|
3113 | 86 |
|
87 |
@end |