/Unit Tests/PSTTreeGraph/PSTTreeGraphViewController.m
https://code.google.com/ · Objective C · 44 lines · 16 code · 9 blank · 19 comment · 0 complexity · e9cb38679fb605c2d6565fd4804a99c8 MD5 · raw file
- //
- // PSTTreeGraphViewController.m
- // PSTTreeGraph
- //
- // Created by Ed Preston on 26/08/11.
- // Copyright 2011 Preston Software. All rights reserved.
- //
- #import "PSTTreeGraphViewController.h"
- @implementation PSTTreeGraphViewController
- - (void) didReceiveMemoryWarning
- {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Release any cached data, images, etc that aren't in use.
- }
- #pragma mark - View lifecycle
- /*
- // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- }
- */
- - (void) viewDidUnload
- {
- [super viewDidUnload];
- // Release any retained subviews of the main view.
- // e.g. self.myOutlet = nil;
- }
- - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
- {
- // Return YES for supported orientations
- return YES;
- }
- @end