gpt4 book ai didi

iphone - 迭代 s UITableView 中的所有单元格

转载 作者:行者123 更新时间:2023-11-29 13:35:48 24 4
gpt4 key购买 nike

我想遍历所有 uitablewview 单元格并显示每个单元格中包含的 uitextview 的文本。我的表格可以有很多行,要到达所有行,您必须滚动。我做了一个实现,但它只显示滚动中当前可见单元格的文本,其他的给我 null。

for (int i = 0; i < [propertiesTableView numberOfRowsInSection:0]; i++) {
UITableViewCell* cell = [propertiesTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
UITextView* tx = (UITextView*)[cell viewWithTag:2];
NSString* temp = tx.text;
NSLog(@"%@", temp);
}

如何解决这个问题?

最佳答案

发生这种情况是因为只有可见单元格被实例化(还记得 dequeueReusableCellWithIdentifier: 函数吗?)。您应该从表数据源中提取所需的信息。

关于iphone - 迭代 s UITableView 中的所有单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10599177/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com