gpt4 book ai didi

iOS8 Modal ViewController 旋转问题

转载 作者:可可西里 更新时间:2023-11-01 03:59:09 25 4
gpt4 key购买 nike

您好,我在 iOS8 中旋转 Modal 呈现的 ViewController 时遇到问题。所有这一切在 iOS7 及更低版本上运行良好。

应用结构:

  • RootController(支持的方向:纵向)
  • Modal Presented ViewController(支持的方向:全部)

我的问题是,当我在呈现模态 Controller 时旋转设备时,模态 Controller 的 View 没有调整到横向框架。

看起来像这样:

enter image description here调用了旋转方法,当我手动将 View 的框架设置为横向时,右侧(屏幕灰色侧)的用户交互不起作用。

根 Controller 代码:

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait;
}

- (NSUInteger) supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}

模态 Controller 代码:

- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskAll;
}


- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
duration:(NSTimeInterval)duration
{
if (self.presentingViewController != nil) {
[self.presentingViewController willAnimateRotationToInterfaceOrientation:toInterfaceOrientation
duration:duration];
}
}

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
duration:(NSTimeInterval)duration
{
if (self.presentingViewController != nil) {
[self.presentingViewController willRotateToInterfaceOrientation:toInterfaceOrientation
duration:duration];
}
}

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
if (self.presentingViewController != nil) {
[self.presentingViewController didRotateFromInterfaceOrientation:fromInterfaceOrientation];
}
}

- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
{
[super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];

[coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> context) {

} completion:^(id<UIViewControllerTransitionCoordinatorContext> context) {

}];
}

谁能帮我解决 iOS8 的这个问题。

最佳答案

您如何呈现模态视图 Controller ?你为什么要自己转发旋转方法?正确完成后,这应该会自动处理,您只需要 -supportedInterfaceOrientations 方法(正如 Jasper 指出的那样,autoresizingMask 或自动布局约束需要正确)。

关于iOS8 Modal ViewController 旋转问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26142718/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com