BenchmarkIPhoneViewController.m 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #import "BenchmarkIPhoneViewController.h"
  2. @implementation BenchmarkIPhoneViewController
  3. /*
  4. // The designated initializer. Override to perform setup that is required before the view is loaded.
  5. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
  6. if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
  7. // Custom initialization
  8. }
  9. return self;
  10. }
  11. */
  12. /*
  13. // Implement loadView to create a view hierarchy programmatically, without using a nib.
  14. - (void)loadView {
  15. }
  16. */
  17. /*
  18. // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
  19. - (void)viewDidLoad {
  20. [super viewDidLoad];
  21. }
  22. */
  23. /*
  24. // Override to allow orientations other than the default portrait orientation.
  25. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
  26. // Return YES for supported orientations
  27. return (interfaceOrientation == UIInterfaceOrientationPortrait);
  28. }
  29. */
  30. - (void)didReceiveMemoryWarning {
  31. // Releases the view if it doesn't have a superview.
  32. [super didReceiveMemoryWarning];
  33. // Release any cached data, images, etc that aren't in use.
  34. }
  35. @end