author | koda |
Mon, 31 May 2010 19:33:42 +0000 | |
changeset 3487 | b1d00f1950c8 |
parent 3465 | b290993c0810 |
child 3490 | 016b3172b645 |
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. |
|
3487 | 25 |
detailViewController = nil; |
26 |
MSG_MEMCLEAN(); |
|
3305 | 27 |
} |
28 |
||
29 |
// load the view programmatically; we need a splitViewController that handles a MasterViewController |
|
30 |
// (which is just a UITableViewController) and a DetailViewController where we present options |
|
31 |
-(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
|
32 |
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
|
33 |
UINavigationController *detailedNavController = [[UINavigationController alloc] initWithRootViewController:detailViewController]; |
3321 | 34 |
[detailViewController release]; |
35 |
||
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
36 |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
37 |
self.view.frame = CGRectMake(0, 0, 1024, 768); |
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
38 |
|
3465 | 39 |
//id splitViewRootController; |
3321 | 40 |
|
41 |
Class splitViewControllerClass = NSClassFromString(@"UISplitViewController"); |
|
42 |
if (splitViewControllerClass) { |
|
3465 | 43 |
#ifdef __IPHONE_3_2 |
44 |
UISplitViewController *splitViewRootController = [[UISplitViewController alloc] init]; |
|
3352 | 45 |
//[[splitViewRootController view] setAutoresizingMask: UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth]; |
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
46 |
|
3465 | 47 |
splitViewRootController.view.frame = CGRectMake(0, 0, 1024, 768); |
3321 | 48 |
MasterViewController *masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain]; |
3305 | 49 |
|
50 |
UINavigationController *mainNavController = [[UINavigationController alloc] initWithRootViewController:masterViewController]; |
|
3321 | 51 |
|
3464 | 52 |
masterViewController.detailViewController = detailViewController; |
3321 | 53 |
[masterViewController release]; |
54 |
||
3465 | 55 |
splitViewRootController.viewControllers = [NSArray arrayWithObjects: mainNavController, detailedNavController, nil]; |
3305 | 56 |
[mainNavController release]; |
57 |
[detailedNavController release]; |
|
58 |
||
3465 | 59 |
splitViewRootController.delegate = detailViewController; |
3321 | 60 |
[detailViewController release]; |
61 |
||
3305 | 62 |
// add view to main controller |
63 |
[self.view addSubview:[splitViewRootController view]]; |
|
3465 | 64 |
#endif |
3305 | 65 |
} else { |
66 |
[self.view addSubview:detailedNavController.view]; |
|
67 |
} |
|
68 |
||
69 |
[super viewDidLoad]; |
|
70 |
} |
|
3321 | 71 |
|
72 |
-(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
|
73 |
detailViewController = nil; |
3321 | 74 |
[super viewDidUnload]; |
75 |
} |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
76 |
|
3305 | 77 |
-(void) dealloc { |
78 |
[detailViewController release]; |
|
79 |
[super dealloc]; |
|
80 |
} |
|
81 |
||
82 |
#pragma mark - |
|
83 |
#pragma mark additional methods as we're using a UINavigationController programmatically |
|
84 |
// see http://davidebenini.it/2009/01/03/viewwillappear-not-being-called-inside-a-uinavigationcontroller/ |
|
85 |
-(void) viewWillAppear:(BOOL)animated { |
|
86 |
[super viewWillAppear:animated]; |
|
87 |
[detailViewController.navigationController viewWillAppear:animated]; |
|
88 |
} |
|
89 |
||
90 |
-(void) viewWillDisappear:(BOOL)animated { |
|
91 |
[super viewWillDisappear:animated]; |
|
92 |
[detailViewController.navigationController viewWillDisappear:animated]; |
|
93 |
} |
|
94 |
||
95 |
-(void) viewDidAppear:(BOOL)animated { |
|
96 |
[super viewDidLoad]; |
|
97 |
[detailViewController.navigationController viewDidAppear:animated]; |
|
98 |
} |
|
99 |
||
100 |
-(void) viewDidDisappear:(BOOL)animated { |
|
101 |
[super viewDidUnload]; |
|
102 |
[detailViewController.navigationController viewDidDisappear:animated]; |
|
103 |
} |
|
104 |
||
105 |
||
106 |
@end |