gpt4 book ai didi

ios - IBOutlet 链接到嵌入式容器 View Controller

转载 作者:IT王子 更新时间:2023-10-29 07:42:19 24 4
gpt4 key购买 nike

我有一个复杂的 iPad View ,我通过多个 View Controller 来管理它。我以前(在 iOS6/Xcode 4.5 之前)通过在代码中分配我的 View Controller 来做到这一点,并通过指向主视图的链接将各种 View 连接到它们。

我想做的是使用新的 UIContainerView 容器 View 将 View Controller 嵌入 Storyboard文件中。我似乎无法将嵌入式 View Controller 的 IBOutlet 链接到主 Controller 。

这有可能吗?或者通过代码中的标签或其他内容检索嵌入式 Controller ?

这个问题特别是关于使用容器 View

最佳答案

某些情况下的另一种选择是使用 -prepareForSegue:sender: 捕获嵌入式 Controller 。

例如,如果我在 CustomContainerViewController 中嵌入了一个 UINavigationController,我可以在 Storyboard中将嵌入的 segue 命名为 embedContentStack 并捕获它在 CustomContainerViewController 中通过

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"embedContentStack"]) {
// can't assign the view controller from an embed segue via the storyboard, so capture here
_contentStack = (UINavigationController *)segue.destinationViewController;
}
}

关于ios - IBOutlet 链接到嵌入式容器 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12676660/

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