2eff7e26c0
git-svn-id: http://skia.googlecode.com/svn/trunk@1703 2bbb7eff-a529-9590-31e7-b0007b416f81
22 lines
433 B
Plaintext
22 lines
433 B
Plaintext
#import "SkUINavigationController.h"
|
|
|
|
@implementation SkUINavigationController
|
|
@synthesize fRoot, fDetail;
|
|
|
|
- (void)loadData {
|
|
[fRoot initList];
|
|
[fDetail populateRoot:fRoot];
|
|
}
|
|
|
|
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
|
|
return YES; //Allow auto rotation for all orientations
|
|
}
|
|
|
|
- (void)dealloc {
|
|
[fRoot release];
|
|
[fDetail release];
|
|
[super dealloc];
|
|
}
|
|
|
|
@end
|