author | koda |
Wed, 23 Jun 2010 01:00:52 +0200 | |
changeset 3535 | 9e78c1f3d8d8 |
parent 3514 | 59dbd31e9953 |
child 3546 | ccf4854df294 |
permissions | -rw-r--r-- |
3305 | 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" |
|
3335 | 12 |
#import "CommodityFunctions.h" |
3305 | 13 |
|
14 |
@implementation SplitViewRootController |
|
15 |
||
16 |
||
17 |
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { |
|
3335 | 18 |
return rotationManager(interfaceOrientation); |
3305 | 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. |
|
3490 | 25 |
if (detailViewController.view.superview == nil) |
26 |
detailViewController = nil; |
|
3487 | 27 |
MSG_MEMCLEAN(); |
3305 | 28 |
} |
29 |
||
30 |
// load the view programmatically; we need a splitViewController that handles a MasterViewController |
|
31 |
// (which is just a UITableViewController) and a DetailViewController where we present options |
|
32 |
-(void) viewDidLoad { |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
33 |
detailViewController = [[DetailViewController alloc] initWithStyle:UITableViewStyleGrouped]; |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
34 |
UINavigationController *detailedNavController = [[UINavigationController alloc] initWithRootViewController:detailViewController]; |
3321 | 35 |
[detailViewController release]; |
36 |
||
3490 | 37 |
CGRect rect = [[UIScreen mainScreen] bounds]; |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
38 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
3490 | 39 |
self.view.frame = CGRectMake(0, 0, rect.size.height, rect.size.width); |
40 |
||
3535
9e78c1f3d8d8
update the project to ios4 by removing pre-3.2 references
koda
parents:
3514
diff
changeset
|
41 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { |
3465 | 42 |
UISplitViewController *splitViewRootController = [[UISplitViewController alloc] init]; |
3490 | 43 |
//splitViewRootController.view.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth; |
44 |
splitViewRootController.view.frame = CGRectMake(0, 0, rect.size.height, rect.size.width); |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
45 |
|
3321 | 46 |
MasterViewController *masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain]; |
3305 | 47 |
UINavigationController *mainNavController = [[UINavigationController alloc] initWithRootViewController:masterViewController]; |
3321 | 48 |
[masterViewController release]; |
49 |
||
3490 | 50 |
splitViewRootController.delegate = detailViewController; |
51 |
masterViewController.detailViewController = detailViewController; |
|
3465 | 52 |
splitViewRootController.viewControllers = [NSArray arrayWithObjects: mainNavController, detailedNavController, nil]; |
3305 | 53 |
[mainNavController release]; |
54 |
[detailedNavController release]; |
|
55 |
||
56 |
// add view to main controller |
|
3490 | 57 |
[self.view addSubview:splitViewRootController.view]; |
3305 | 58 |
} else { |
59 |
[self.view addSubview:detailedNavController.view]; |
|
60 |
} |
|
61 |
||
62 |
[super viewDidLoad]; |
|
63 |
} |
|
3321 | 64 |
|
65 |
-(void) viewDidUnload { |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
66 |
detailViewController = nil; |
3321 | 67 |
[super viewDidUnload]; |
3490 | 68 |
MSG_DIDUNLOAD(); |
3321 | 69 |
} |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
70 |
|
3305 | 71 |
-(void) dealloc { |
72 |
[detailViewController release]; |
|
73 |
[super dealloc]; |
|
74 |
} |
|
3490 | 75 |
-(void) willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration{ |
76 |
[detailViewController willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration]; |
|
77 |
} |
|
3305 | 78 |
|
79 |
#pragma mark - |
|
80 |
#pragma mark additional methods as we're using a UINavigationController programmatically |
|
81 |
// see http://davidebenini.it/2009/01/03/viewwillappear-not-being-called-inside-a-uinavigationcontroller/ |
|
82 |
-(void) viewWillAppear:(BOOL)animated { |
|
83 |
[super viewWillAppear:animated]; |
|
84 |
[detailViewController.navigationController viewWillAppear:animated]; |
|
85 |
} |
|
86 |
||
87 |
-(void) viewWillDisappear:(BOOL)animated { |
|
88 |
[super viewWillDisappear:animated]; |
|
89 |
[detailViewController.navigationController viewWillDisappear:animated]; |
|
90 |
} |
|
91 |
||
92 |
-(void) viewDidAppear:(BOOL)animated { |
|
93 |
[super viewDidLoad]; |
|
94 |
[detailViewController.navigationController viewDidAppear:animated]; |
|
95 |
} |
|
96 |
||
97 |
-(void) viewDidDisappear:(BOOL)animated { |
|
98 |
[super viewDidUnload]; |
|
99 |
[detailViewController.navigationController viewDidDisappear:animated]; |
|
100 |
} |
|
101 |
||
102 |
||
103 |
@end |