我有这个 XML 并对其进行解析,然后我在第一个 UITableViewController 中列出了所有主菜单,我想列出从 XML 到下一个 UITableViewController 的子类别,我有一个问题,比如传递索引的编号选择的行,当到达目标视图控制器时,将检查它是哪个,然后显示该索引的相关子类别。
我的 XML
<category>
<name>Meal</name>
<description>food description</description>
<image> Link Here </image>
<sub_cat>
<sub_name>Burger</sub_name>
<sub_desc>sub cat description</sub_desc>
<sub_image> Link </sub_image>
</sub_cat>
<sub_cat>
<sub_name>Pizza</sub_name>
<sub_desc>sub cat description</sub_desc>
<sub_image> Link </sub_image>
</sub_cat>
</category>
这就是我的项目的样子,当我点击 Meal Cell 时,我将转到另一个 ViewController 并仅显示 Burger 和 Pizza,