gpt4 book ai didi

ios - 根据检索到的数据类型创建自定义单元格

转载 作者:行者123 更新时间:2023-11-29 03:35:55 26 4
gpt4 key购买 nike

我的应用有一个带有自定义单元格的 TableView。我想指定使用 Parse.com

我希望我的单元格有一个根据称为...的数据类型的图像,例如:

如果查询包含等待完成的数据,则单元格必须有图片“红色图像”

否则

如果查询包含已完成的获得的数据,则单元格必须具有“绿色图像”。

我该怎么办?如果解释起来很困难,我深表歉意,但我想要的结果是应用程序的用户可以确定哪些数据需要完成,哪些数据不需要通过 TableView 的显示来完成。

最佳答案

在您的 Parse.com 类中 - 添加一个带有 bool 值的 dataCompleted 列。

cellForRowAtIndexPath(对于 UITableView)或 cellForItemAtIndexPath(对于 UICollectionView)中处理查询结果时,请检查dataCompleted 键的 bool 值并相应地设置图像。

// _dataSource is an array of PFObjects from the Parse.com query
PFObject *rowObject = [_dataSource objectAtIndex:indexPath.row];

if([[rowObject objectForKey:@"dataCompleted"] boolValue])
{
// Data is completed
cell.outletDataCompletedImageView.image = [UIImage imageNamed:@"icon_dataiscompleted"];
}
else
{
// Data still to be completed
cell.outletDataCompletedImageView.image = [UIImage imageNamed:@"icon_datastilltobecompleted"];
}

关于ios - 根据检索到的数据类型创建自定义单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19185160/

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