blob: 179eed7683bbdac56d2cbde2f6a1873db5da4a7f [file] [log] [blame]
yangsu@google.com2eff7e22011-06-24 15:57:30 +00001#import "SkUINavigationController.h"
2
3@implementation SkUINavigationController
4@synthesize fRoot, fDetail;
5
6- (void)loadData {
yangsu@google.com2e20c242011-07-07 19:26:42 +00007 [fRoot initSamples];
yangsu@google.com2eff7e22011-06-24 15:57:30 +00008 [fDetail populateRoot:fRoot];
9}
10
11- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
12 return YES; //Allow auto rotation for all orientations
13}
14
15- (void)dealloc {
16 [fRoot release];
17 [fDetail release];
18 [super dealloc];
19}
20
21@end