gpt4 book ai didi

iOS Storyboard UIViewController 来回切换

转载 作者:行者123 更新时间:2023-11-29 03:21:52 30 4
gpt4 key购买 nike

应用 Storyboard的基本设计如下:

顶级#1 导航 Controller --> View Controller (前面)包含按钮“Show Master”

下一级#2 导航 Controller --> View Controller (主) --> 推送 --> View Controller (详细)

当我在模拟器中运行应用程序时,会出现前 View Controller 页面。

要求:单击“显示主控”按钮时,我希望控件聚焦到主控。此处完成操作后,要么显示详细 View Controller ,要么返回前 View Controller 。如何从 Front.M 和 Master.M 编写此代码。

设置:iOS 6.x、XCode 5.x 注意:Front.M 中存在以下代码,但它不起作用,将母版页显示为黑色

vwMaster *vc = [[vwMaster alloc] init];
vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:vc animated:YES completion:NULL];

有什么想法吗?

最佳答案

看起来您已经完成了大部分工作,但是 vwMaster 没有与之关联的布局信息。提供此功能的一种方法是创建一个与 View Controller 类同名的 .xib 文件(即 vwMaster.xib),并将 xib 文件的所有者设置为 vwMaster。然后您现有的代码应该可以工作。

看起来您正在使用 Storyboard,但是,在这种情况下您有多种选择:

  1. 最简单的选择。在 Storyboard 中,按住 Ctrl 从前 View Controller 中的按钮拖动到主视图 Controller 。选择模态转场类型。

  2. 通过在 Storyboard 中的前 View Controller 和主视图 Controller 之间按住 Ctrl 键拖动,在它们之间创建模式转场,在属性检查器中为转场提供标识符(例如“vwMaster”),并在代码中触发转场:

    [self performSegueWithIdentifier:@"vwMaster" sender:self];
  3. 在 Storyboard的身份检查器中为 vwMaster View Controller 本身提供一个标识符,并像以前一样显示它:

    vwMaster *vc = (vwMaster *)[self.storyboard instantiateViewControllerWithIdentifier:@"vwMaster"];
    vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
    [self presentViewController:vc animated:YES completion:NULL];

无论您选择哪种方式,您都可能希望使用委托(delegate)模式来关闭您的 View Controller 。为此,我建议您阅读相关的苹果文档:

https://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/ModalViewControllers/ModalViewControllers.html

关于iOS Storyboard UIViewController 来回切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20982587/

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