author | sheepluva |
Sat, 01 May 2010 13:04:00 +0000 | |
changeset 3386 | 3fa24f5776c3 |
parent 3374 | 0d522416d97f |
child 3405 | 8fdb08497bf1 |
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. |
|
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 { |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
30 |
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
|
31 |
UINavigationController *detailedNavController = [[UINavigationController alloc] initWithRootViewController:detailViewController]; |
3321 | 32 |
[detailViewController release]; |
33 |
||
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
34 |
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
|
35 |
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
|
36 |
|
3321 | 37 |
id splitViewRootController; |
38 |
||
39 |
Class splitViewControllerClass = NSClassFromString(@"UISplitViewController"); |
|
40 |
if (splitViewControllerClass) { |
|
41 |
splitViewRootController = [[splitViewControllerClass alloc] init]; |
|
3352 | 42 |
//[[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
|
43 |
|
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
44 |
[[splitViewRootController view] setFrame:CGRectMake(0, 0, 1024, 768)]; |
3321 | 45 |
MasterViewController *masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain]; |
3305 | 46 |
|
47 |
UINavigationController *mainNavController = [[UINavigationController alloc] initWithRootViewController:masterViewController]; |
|
3321 | 48 |
|
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
49 |
masterViewController.detailViewController = detailViewController; |
3321 | 50 |
|
51 |
[masterViewController release]; |
|
52 |
||
3305 | 53 |
[splitViewRootController setViewControllers:[NSArray arrayWithObjects: mainNavController, detailedNavController, nil]]; |
54 |
[mainNavController release]; |
|
55 |
[detailedNavController release]; |
|
56 |
||
3374
0d522416d97f
lazy loading for all the tables with images (might affect performance but ui feels much more responsive)
koda
parents:
3365
diff
changeset
|
57 |
[splitViewRootController setDelegate:detailViewController]; |
3321 | 58 |
[detailViewController release]; |
59 |
||
3305 | 60 |
// add view to main controller |
61 |
[self.view addSubview:[splitViewRootController view]]; |
|
62 |
} else { |
|
63 |
[self.view addSubview:detailedNavController.view]; |
|
64 |
} |
|
65 |
||
66 |
[super viewDidLoad]; |
|
67 |
} |
|
3321 | 68 |
|
69 |
-(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
|
70 |
detailViewController = nil; |
3321 | 71 |
[super viewDidUnload]; |
72 |
} |
|
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 |
|
3305 | 74 |
-(void) dealloc { |
75 |
[detailViewController release]; |
|
76 |
[super dealloc]; |
|
77 |
} |
|
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 |