我的应用程序使用多个 tableViews。
它包含一个具有 NSMutableArray 的 RootViewController,命名为 mainArray,具有 id、parent_id、title、subtitle、description。
在我的 SecondTableViewController 中,我需要根据 parent_id 从我的 mainArray 创建一个 childArray,以便我可以填充 tableviewcells。
我需要我的 childArray1 只包含每个 parent_id = 1 的 id、title、subtitle childArray2 只包含每个 parent_id = 2 的 id、title、subtitle 等等。
这样做有一些提示吗?