blob: d39cc48a58d1f9bacec3829ddc936a9a81be0a48 [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 {
7 [fRoot initList];
8 [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