Can i use navigation for only the small view?
If i have a landscape view of 300/200 in an开发者_运维问答 iPad, i want to use navigation for only the small view, is that possible? If yes, an example will be really helpfull
What about this:
MainController *controller = [[MainController alloc] init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:controller];
[controller release];
[self.navigationController presentModalViewController:navController animated:YES];
navController.view.superview.frame = CGRectMake(0, 0, 300, 300);
[navController release];
Hope this will help you
精彩评论