Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个 10 行的 tableview,每行里面有两个标签(labelA 和 labelB)。
如果我想更改第 3 行中 labelB 的文本,那么会调用什么?
谢谢!!
找到答案并将其放在这里以备将来参考,以防其他人遇到此问题。
这是我的问题的答案代码
tbl.data[0].rows[2].children[1].text
tbl.data[0] = 表格视图的数据
rows[2] = 转到第 3 行(行从 0 开始)
children[1] = 转到第二个孩子(同样第一个标签是孩子 0,第二个标签是孩子 1)
text = 标签的实际文本