找不到容器视图对象

Can't find Container View Object

我是唯一一个在 Xcode 7 中找不到 Container View 对象的人吗??

我以前用过这个功能,现在想重新实现,但是找不到。

我想知道 maybe now 是否已弃用,但它仍在 Apple 官方文档中。

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

我想做的是重现 Snapchat 导航视图,我有一个带分页的 scrollView,每个页面上将包含 3 个视图控制器。我想使用容器来添加每个子视图控制器。

为了回应用户 Raj Tandel 在评论中发布的答案,显然您不能将容器视图与 xibs 一起使用。

这解释了原因:

It is not possible as it needs to deal with parent and child view relationship which is not meant for xib(s)

解决方法是"just add a plain UIView to the xib to act as a container. Then in code, add your child view controller's view as a subview of the container"

有关更多信息,请单击上面包含的 link(努力保持良好的答案和话题的连续性,而不是重复已经存在的内容)