我有一个包含两个部分的 tableView 的视图控制器。第 1 节只有一行,第 2 节有一些没有行数限制的数组。
当我单击第 1 节中的单元格时,我有一个 pickerView 出现在操作表中。无论我在我的 pickerView 上选择什么组件,都会成为第 1 节单元格上的标题。
现在我的问题,
我的 tableView 第 2 节的内容可以依赖第 1 节中单元格的标题文本吗?
例如:
if Section 1's text is = "String A", Section 2's contents should be = "Array A"
if Section 1's text is = "String B", Section 2's contents should be = "Array B"
if Section 1's text is = "String C", Section 2's contents should be = "Array C"
if Section 1's text is = "String D", Section 2's contents should be = "Array D"
等等...
另外,我希望 tableView 更新其内容,因为我用所需的字符串关闭了 pickerView。非常感谢一些示例代码/参考。