OStack程序员社区-中国程序员成长平台

标题: ios - 在 UIViewController 中添加 Storyboard 作为 subview [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 22:10
标题: ios - 在 UIViewController 中添加 Storyboard 作为 subview

我正在创建一个可重复使用的 View ,为此我创建了一个单独的 Storyboard。这个可重用的 View 将被添加到不同的 UIViewControllerMain.StoryBoard 中。为此,我遵循了 Storyboard引用。但我不确定如何将 Storyboard 作为 subview 添加到具有一定框架的 UIViewController 中。
如果您想截取我如何设计屏幕的屏幕截图,请告诉我。



Best Answer-推荐答案


首先您需要从不同的 Storyboard中获取 Storyboard的引用。

UIViewController *viewControllerToAdd =
    [[UIStoryboard storyboardWithName"MainStoryboard" bundle:nil]instantiateViewControllerWithIdentifier"viewForPopover"];

//你写的是你单独创建的 Storyboard的名称,而不是 MainStoryboard

你写这些行

[self addChildViewController:viewControllerToAdd];
[self.view addSubview:viewControllerToAdd.view];
[viewControllerToAdd didMoveToParentViewController:self]; 

应该这么多,我还没试过

关于ios - 在 UIViewController 中添加 Storyboard 作为 subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39566613/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4