#324: update GA to latest version to fix problem with SDK 7

This commit is contained in:
Patrick Santana 2013-10-14 17:02:26 -03:00
parent c096d45c78
commit 5cfe719840
154 changed files with 3770 additions and 6852 deletions

View file

@ -0,0 +1,31 @@
//
// 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