gpt4 book ai didi

iphone - 释放 tableview ios iphone 中的所有单元格

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:52:11 24 4
gpt4 key购买 nike

我通过在 xcode 中进行分析发现了内存泄漏问题。这个问题很简单,但我不明白如何解决它:

考虑一个带有 2 个按钮和一个 tableview 的 uiviewcontroller。button1=从服务器加载 JSON 数据并添加单元格到 tableview 然后 [tableview reloadData]

button2=从另一台服务器加载 JSON 数据并将单元格添加到 tableview,然后重新加载。

好的,问题出在:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
....
.....
NSURL *url = [NSURL URLWithString:stringpath];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img;
if(!data) img=[UIImage imageNamed:@"small.jpg"];
else img= [[UIImage alloc] initWithData:data];
cell.imageView.image = img;

现在好吧,如果我每次切换时都用 2 个按钮开始切换,我会从 UIImage 泄漏,所以我想我需要在重新加载之前“清除”(释放)所有单元格数据?

谢谢

最佳答案

您应该在 cell.imageView.image 中设置 img 对象后释放它。我更喜欢在同一行上autorelease,因为它让我更容易跟踪。

UIImage *img;
if(!data) img=[UIImage imageNamed:@"small.jpg"];
else img= [[[UIImage alloc] initWithData:data] autorelease];
cell.imageView.image = img;

正如在另一个答案中提到的,您可以通过不使用 initWithData 调用来避免痛苦,而是使用 imageWithData

细胞会照顾好自己。

关于iphone - 释放 tableview ios iphone 中的所有单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5395558/

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