cocoaTouch/SplitViewRootController.m
author sheepluva
Wed, 07 Apr 2010 16:03:21 +0000
changeset 3322 80afcb97eb46
parent 3321 988e39ef3c20
child 3323 091cf214bdd5
permissions -rw-r--r--
* INSTALL file: setting FreePascal to >= 2.2.0 * engine: some more value caching
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     1
    //
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     2
//  SplitViewRootController.m
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     3
//  HedgewarsMobile
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     4
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     5
//  Created by Vittorio on 27/03/10.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     7
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     8
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     9
#import "SplitViewRootController.h"
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    10
#import "MasterViewController.h"
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    11
#import "DetailViewController.h"
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    12
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    13
@implementation SplitViewRootController
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    14
@synthesize detailViewController;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    15
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    16
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    17
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    18
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    19
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    20
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    21
-(void) didReceiveMemoryWarning {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    22
    // Releases the view if it doesn't have a superview.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    23
    [super didReceiveMemoryWarning];    
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    24
    // Release any cached data, images, etc that aren't in use.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    25
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    26
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    27
// load the view programmatically; we need a splitViewController that handles a MasterViewController 
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    28
// (which is just a UITableViewController) and a DetailViewController where we present options
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    29
-(void) viewDidLoad {
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    30
    self.detailViewController = [[DetailViewController alloc] initWithStyle:UITableViewStyleGrouped];
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    31
     [detailViewController release];
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    32
           NSLog(@"%d", [detailViewController retainCount]);
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    33
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    34
    UINavigationController *detailedNavController = [[UINavigationController alloc] initWithRootViewController:self.detailViewController];
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    35
            NSLog(@"%d", [detailViewController retainCount]);
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    36
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    37
    [detailViewController release];
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    38
            NSLog(@"%d", [detailViewController retainCount]);
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    39
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    40
    id splitViewRootController;
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    41
    
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    42
    Class splitViewControllerClass = NSClassFromString(@"UISplitViewController");
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    43
    if (splitViewControllerClass) {
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    44
        splitViewRootController = [[splitViewControllerClass alloc] init];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    45
        CGRect screensize = [[UIScreen mainScreen] bounds];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    46
        [[splitViewRootController view] setFrame:CGRectMake(0, 0, screensize.size.height, screensize.size.width)];
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    47
        MasterViewController *masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain];
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    48
        
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    49
        UINavigationController *mainNavController = [[UINavigationController alloc] initWithRootViewController:masterViewController];
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    50
    
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    51
        masterViewController.detailViewController = self.detailViewController;
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    52
                NSLog(@"%d", [detailViewController retainCount]);
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    53
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    54
        [masterViewController release];
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    55
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    56
        [splitViewRootController setViewControllers:[NSArray arrayWithObjects: mainNavController, detailedNavController, nil]];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    57
        [mainNavController release];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    58
        [detailedNavController release];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    59
        
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    60
        [splitViewRootController setDelegate: self.detailViewController];
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    61
        [detailViewController release];
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    62
                NSLog(@"%d", [detailViewController retainCount]);
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    63
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    64
        // add view to main controller
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    65
        [self.view addSubview:[splitViewRootController view]];
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    66
        //[splitViewRootController release];
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    67
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    68
    } else {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    69
        [self.view addSubview:detailedNavController.view];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    70
    }
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    71
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    72
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    73
    [super viewDidLoad];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    74
}
3321
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    75
         
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    76
-(void) viewDidUnload {
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    77
    [super viewDidUnload];
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    78
    self.detailViewController = nil;
988e39ef3c20 rewrote a couple of things i didn't like
koda
parents: 3312
diff changeset
    79
}
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    80
-(void) dealloc {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    81
    [detailViewController release];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    82
    [super dealloc];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    83
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    84
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    85
#pragma mark -
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    86
#pragma mark additional methods as we're using a UINavigationController programmatically
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    87
// see http://davidebenini.it/2009/01/03/viewwillappear-not-being-called-inside-a-uinavigationcontroller/
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    88
-(void) viewWillAppear:(BOOL)animated {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    89
    [super viewWillAppear:animated];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    90
    [detailViewController.navigationController viewWillAppear:animated];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    91
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    92
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    93
-(void) viewWillDisappear:(BOOL)animated {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    94
    [super viewWillDisappear:animated];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    95
    [detailViewController.navigationController viewWillDisappear:animated];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    96
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    97
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    98
-(void) viewDidAppear:(BOOL)animated {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    99
    [super viewDidLoad];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   100
    [detailViewController.navigationController viewDidAppear:animated];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   101
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   102
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   103
-(void) viewDidDisappear:(BOOL)animated {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   104
    [super viewDidUnload];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   105
    [detailViewController.navigationController viewDidDisappear:animated];
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   106
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   107
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   108
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
   109
@end