我正在使用 IGListStackedSectionController 并且我想知道如何将多个对象传递给任何给定的孩子。
我有这样的场景:
let sectionController = IGListStackedSectionController(sectionControllers: [
WorkingRangeSectionController(),
DisplaySectionController(),
HorizontalSectionController(),
])!
假设我想在第一部分放置一个动态标题,在第二部分放置一个图像数组,在最后一部分放置一个不同的图像数组。
我该怎么做?
非常感谢!