gpt4 book ai didi

swift - XLPagerTabStrip 中的 Collectionview

转载 作者:搜寻专家 更新时间:2023-11-01 06:05:59 38 4
gpt4 key购买 nike

我有一个运行的 CollectionView 和一个 XLPagerTabStrip 也运行,但是当我将我的 CollectionView 集成到 IndicatorInfoProvider 的 XLPagerTabStrip 中时,我有这个错误...

enter image description here

谢谢!

最佳答案

我遇到了类似的问题。看起来当您使用 Storyboard 时,您不能简单地创建 Controller 的新实例并添加到页面列表中。如果您如下创建 subview ,则不会显示任何内容。

let child1 = new ChildViewController()

当您尝试访问 Controller 上的所有 View 时, Controller 上的所有 View 都为 nil,因此它会抛出您在问题中提到的异常。

相反,您必须通过 Storyboard创建它:

let child1 = storyboard!.instantiateViewControllerWithIdentifier("childViewIdentifier") as! ChildViewController

我在他们的 GitHub 存储库的一个问题中发现了这个: https://github.com/xmartlabs/XLPagerTabStrip/issues/123

我认为它也应该在主要文档中提及。由于他们的示例项目不使用 IB 来设计 View ,所以 instantiateViewControllerWithIdentifier 也没有在其中使用,所以不是很明显。

无论如何,它解决了我的问题。希望它也对你有用。

关于swift - XLPagerTabStrip 中的 Collectionview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37384139/

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