skia2/experimental/iOSSampleApp/iPhone/SkUINavigationController.mm
2011-08-02 13:20:22 +00:00

28 lines
706 B
Plaintext

#import "SkUINavigationController.h"
@implementation SkUINavigationController
@synthesize fRoot, fDetail;
- (void)viewDidLoad {
[super viewDidLoad];
[fDetail populateRoot:fRoot];
[self pushViewController:fDetail animated:NO];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES; //Allow auto rotation for all orientations
}
- (void)dealloc {
[fRoot release];
[fDetail release];
[super dealloc];
}
//Table View Delegate Methods
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[fDetail goToItem:indexPath.row];
[self pushViewController:fDetail animated:YES];
}
@end