// // VKMSecondViewController.m // Sprintly2 // // Created by Varun Mehta on 6/11/12. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import "VKMSecondViewController.h" @interface VKMSecondViewController () @end @implementation VKMSecondViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. } - (void)viewDidUnload { [super viewDidUnload]; // Release any retained subviews of the main view. } - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) { return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown); } else { return YES; } } @end