/samples/SimpleSampleMap/Classes/SimpleSampleMapViewController.m
http://github.com/route-me/route-me · Objective C · 59 lines · 9 code · 15 blank · 35 comment · 0 complexity · 146a1e56aeb42fe83091426222e35b85 MD5 · raw file
- //
- // SimpleSampleMapViewController.m
- // SimpleSampleMap
- //
- // Created by John Ahrens on 3/14/09.
- // Copyright John Ahrens, LLC 2009. All rights reserved.
- //
- #import "SimpleSampleMapViewController.h"
- @implementation SimpleSampleMapViewController
- /*
- // The designated initializer. Override to perform setup that is required before the view is loaded.
- - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
- if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
- // Custom initialization
- }
- return self;
- }
- */
- /*
- // Implement loadView to create a view hierarchy programmatically, without using a nib.
- - (void)loadView {
- }
- */
- /*
- // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- - (void)viewDidLoad {
- [super viewDidLoad];
- }
- */
- /*
- // Override to allow orientations other than the default portrait orientation.
- - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- // Return YES for supported orientations
- return (interfaceOrientation == UIInterfaceOrientationPortrait);
- }
- */
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
- // Release anything that's not essential, such as cached data
- }
- - (void)dealloc {
- [super dealloc];
- }
- @end