ios - TableView 在滚动时更改单元格内容
<p><p>我知道,这被问了好几次,每次都回答超过 1 次,但没有一个,这些解决方案对我自己有帮助!</p>
<p>当我的 TableView 打开时,我可以看到一行文本,而不是 >10!所以我向下滚动,然后 2 个单元格以正确的方式呈现!如果我再次向上滚动,我可以看到带有这一行的单元格,也显示一切正确!
所以,这是我的问题:我的代码出了什么问题?!</p>
<p>这是我的 cellForRowAtIndexPath:</p>
<pre><code>NSString *CellIdentifier = @"Cell";
AACTickerYellowCell *cell = ;
if(cell == nil)
{
cell = [initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSString * text = ;
CGSize size = ;
;
cell.textView.text = text;
return cell;
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>这样尝试,你的问题就会消失:</p>
<pre><code>NSString *CellIdentifier = @"Cell";
AACTickerYellowCell *cell = ;
if(cell == nil)
{
cell = [initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSString * text = ;
dispatch_async(dispatch_get_main_queue(), ^{
CGSize size = ;
;
cell.textView.text = text;
});
return cell;
</code></pre></p>
<p style="font-size: 20px;">关于ios - TableView 在滚动时更改单元格内容,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19507236/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19507236/
</a>
</p>
页:
[1]