31 lines
848 B
Objective-C
31 lines
848 B
Objective-C
//
|
|
// NavController.m
|
|
// CuteAnimals
|
|
//
|
|
// Copyright 2012 Google, Inc. All rights reserved.
|
|
//
|
|
|
|
#import "NavController.h"
|
|
|
|
@implementation NavController
|
|
|
|
- (BOOL)shouldAutorotateToInterfaceOrientation:
|
|
(UIInterfaceOrientation)interfaceOrientation {
|
|
return YES;
|
|
}
|
|
|
|
#pragma mark UINavigationControllerDelegate methods
|
|
|
|
- (void)navigationController:(UINavigationController *)navigationController
|
|
willShowViewController:(UIViewController *)viewController
|
|
animated:(BOOL)animated {
|
|
// NSLog(@"navigationController:willShowViewController:animated:");
|
|
}
|
|
|
|
- (void)navigationController:(UINavigationController *)navigationController
|
|
didShowViewController:(UIViewController *)viewController
|
|
animated:(BOOL)animated {
|
|
// NSLog(@"navigationController:didShowViewController:animated:");
|
|
}
|
|
|
|
@end
|