gpt4 book ai didi

iphone - UIImage 显示在具有指定字符串值的单元格中

转载 作者:行者123 更新时间:2023-11-29 13:31:00 25 4
gpt4 key购买 nike

这篇文章在我的 TableView 中给出了奇怪的结果。我希望为单元格显示 UIImage,其中 reprecented 对象值为键“Marked”=“Yes”。

正确的代码是什么?

if ([[[sortedObjects objectAtIndex: indexPath.row] valueForKey:@"Marked"] isEqual:@"Yes"])  
{
cell.markedImageView.image = [UIImage imageNamed:@"markedItem.png"];
}

最佳答案

问题是每次cell被复用的时候都需要清空imageView图片。

- (void)configCell:(MyCustomCell *)cell atIndexPath:(NSIndexPath)indexPath
{
cell.markedImageView.image = nil;

// configure cell normally

if ([[[sortedObjects objectAtIndex: indexPath.row] valueForKey:@"Marked"] isEqual:@"Yes"])
{
cell.markedImageView.image = [UIImage imageNamed:@"markedItem.png"];
}
}

关于iphone - UIImage 显示在具有指定字符串值的单元格中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11926685/

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