iPad UINavigationController 横向问题
Posted
技术标签:
【中文标题】iPad UINavigationController 横向问题【英文标题】:IPad UINavigationController Landscape problem 【发布时间】:2011-07-08 11:01:44 【问题描述】:我在横向模式下呈现 UINavigationViewController 时遇到问题。视图会自动旋转到纵向模式。我已经花了大约 3 个小时来解决这个问题。如果我没有导航控制器,它工作正常。但是,我需要导航控制器,因为我必须从中推送另一个视图控制器。
请提出任何解决问题的建议。这是代码。
SharingViewController *sharingViewController = [[SharingViewController alloc] initWithNibName:@"SharingViewController" bundle:nil];
UINavigationController *navi = [[[UINavigationController alloc] initWithRootViewController:sharingViewController] autorelease];
[navi setWantsFullScreenLayout:YES];
[navi.view setAutoresizesSubviews:NO];
[navi.navigationBar setHidden:YES];
navi.view.autoresizingMask = UIViewAutoresizingFlexibleWidth;
navi.visibleViewController.view.autoresizingMask = UIViewAutoresizingFlexibleWidth;
self.modalPresentationStyle = UIModalPresentationCurrentContext;
[self presentModalViewController:navi animated:YES];
【问题讨论】:
【参考方案1】:如果你这样做:
SharingViewController *sharingViewController = [[SharingViewController alloc] initWithNibName:@"SharingViewController" bundle:nil];
sharingViewController.modalPresentationStyle = UIModalPresentationCurrentContext;
UINavigationController *navi = [[[UINavigationController alloc] initWithRootViewController:sharingViewController] autorelease];
navi.modalPresentationStyle = UIModalPresentationCurrentContext;
...
[[self navigationController] presentModalViewController:navi animated:YES];
它应该工作。我遇到了同样的问题,但是当我将 modalPresentationStyle 属性添加到 viewController 和 UINavigationController 时,它开始工作了。
【讨论】:
我会试试的。我所做的工作是手动更改导航控制器的框架。以上是关于iPad UINavigationController 横向问题的主要内容,如果未能解决你的问题,请参考以下文章