/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

  1. //
  2. // PSTTreeGraphViewController.m
  3. // PSTTreeGraph
  4. //
  5. // Created by Ed Preston on 26/08/11.
  6. // Copyright 2011 Preston Software. All rights reserved.
  7. //
  8. #import "PSTTreeGraphViewController.h"
  9. @implementation PSTTreeGraphViewController
  10. - (void) didReceiveMemoryWarning
  11. {
  12. // Releases the view if it doesn't have a superview.
  13. [super didReceiveMemoryWarning];
  14. // Release any cached data, images, etc that aren't in use.
  15. }
  16. #pragma mark - View lifecycle
  17. /*
  18. // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
  19. - (void)viewDidLoad
  20. {
  21. [super viewDidLoad];
  22. }
  23. */
  24. - (void) viewDidUnload
  25. {
  26. [super viewDidUnload];
  27. // Release any retained subviews of the main view.
  28. // e.g. self.myOutlet = nil;
  29. }
  30. - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
  31. {
  32. // Return YES for supported orientations
  33. return YES;
  34. }
  35. @end