skia2/experimental/iOSSampleApp/iPhone/SkUINavigationController.mm
2011-06-24 15:57:30 +00:00

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