替换 iPhone 旋转上的 ViewController

发布于 2024-10-27 21:14:58 字数 91 浏览 0 评论 0原文

我的应用程序只有一个纵向驱动的 GUI,但只有一个部分需要旋转。 当设备旋转时,我想关闭当前视图(控制器?)并将其替换为外观完全不同的视图。 我该怎么办?有示例代码吗?

My App only has a portrait driven GUI, but there's a only section that needs to be rotated.
When the device is being rotated I want to dismiss the current View(Controller?) and replace it with a totally different looking one.
How can I do? Any example code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彼岸花ソ最美的依靠 2024-11-03 21:14:58

您可以简单地在 .xib 文件中的同一个 UIViewController 中拥有 2 个不同的视图,并在需要时在它们之间切换。

假设 UIViewController 中有两个视图:

  • ViewPortrait
  • ViewLandscape
 -(void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
   switch (toInterfaceOrientation)
   {
      case UIInterfaceOrientationPortrait:
      case UIInterfaceOrientationPortraitUpsideDown:
          self.view = self.ViewPortrait;   
          break;

      case UIInterfaceOrientationLandscapeLeft:
      case UIInterfaceOrientationLandscapeRight:
          self.view = self.ViewLandscape;           
          break;
   }
}

You can simply have 2 Different Views in the same UIViewController in the .xib file and switch between them when needed.

Let's say you have Two views in the UIViewController:

  • ViewPortrait
  • ViewLandscape
 -(void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
   switch (toInterfaceOrientation)
   {
      case UIInterfaceOrientationPortrait:
      case UIInterfaceOrientationPortraitUpsideDown:
          self.view = self.ViewPortrait;   
          break;

      case UIInterfaceOrientationLandscapeLeft:
      case UIInterfaceOrientationLandscapeRight:
          self.view = self.ViewLandscape;           
          break;
   }
}
祁梦 2024-11-03 21:14:58
- (void)didRotate
{
 //Create your new view controller here if it doesn't exist.
 //Push or present the view controller
}
- (void)didRotate
{
 //Create your new view controller here if it doesn't exist.
 //Push or present the view controller
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文