gpt4 book ai didi

ios - 跨多个 UITableViewCells 拆分单个核心数据对象

转载 作者:行者123 更新时间:2023-11-28 21:49:00 25 4
gpt4 key购买 nike

我有一个名为 Drug 的核心数据对象,它包含 4 个属性; drugEnabled、drugName、drugAdmin、drugExpire。

Core Data 对象是通过解析 JSON 文件预填充的,因此单个条目可能如下所示; “drugName”:“Drug 1”,“drugEnabled”:true,“drugAdmin”:“1/1/90”,“drugExpire”:“1/1/00”

单节表有 3 个原型(prototype)单元格。第一个是药物名称,还包含一个开关,用于隐藏或显示后面的两个单元格,分别用于 drugAdmin 和 drugExpire。前提是只有启用(打开)的药物才会显示其各自的 Admin 和 Expire 日期。所有禁用的 drugName 单元格都将显示,下面没有任何相应的日期。我可以通过以下方式以文本方式表示:

- Drug 1 (on)
- - Drug 1 Admin Date
- - Drug 1 Expire Date
- Drug 2 (on)
- - Drug 2 Admin Date
- - Drug 2 Expire Date
- Drug 3 (off)
- Drug 4 (off)
- Drug 5 (on)
- - Drug 5 Admin Date
- - Drug 5 Expire Date

因为我没有使用任何部分,并且因为每个对象分布在表中的 3 个不同行中,所以我修改了 numberOfRowsInSection 以便返回的 fetchedResultsController.fetchedObjects 计数乘以 3,即

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [self.fetchedResultsController.fetchedObjects count] * 3;
}

然后我使用 cellForRowAtIndexPath 方法来确定哪些内容属于哪个单元格,即

- (DrugTableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

Drug *drug = [self.fetchedResultsController objectAtIndexPath:indexPath];

if (indexPath.row % 3 == 0) {
static NSString *cellIdentifier = @"cellDrug”;
DrugTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];

cell.drugName.text = drug.drugName;
return cell;
}

else if (indexPath.row % 3 == 1) {
static NSString *cellIdentifier = @"cellAdmin";
DrugTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];

cell.drugAdmin.text = drug.drugAdmin;
return cell;
}

else if (indexPath.row % 3 == 2) {
static NSString *cellIdentifier = @"cellExpire";
DrugTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];

cell.drugExpire.text = drug.drugExpire;
return cell;
}

else {
// never returned
return cell;
}
}

为了完整起见,我还设置了以下单元格高度;

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row % 3 == 0) {
return 48;
}

else if (indexPath.row % 3 == 1) {
return 38;
}

else if (indexPath.row % 3 == 2) {
return 38;
}

else {
return 100;
}
}

我遇到的错误是,在 cellForRowAtIndexPath 方法中——据我所知——Core Data 返回的对象数量与我的 UITableView 中的行数不匹配。本质上,我采用 5 个核心数据对象并将它们拆分到 15 个不同的 UITableViewCells 中。根据我实例化 Drug 对象的时间,我得到 [_PFArray objectAtIndex:]: index (5) beyond bounds (5) 或者我得到 no object at index 6 in section at index 0 作为我的错误。我明白这个错误,但我不知道如何解决它。

同样,该表背后的主要前提是能够通过开关隐藏和显示关联的行,并在单个部分表中执行此操作。我还没有找到任何例子来揭开这个谜团,我想我已经很接近了,但是这个错误让我感到很痛苦。有没有人看到任何关于显示单个分区表以便用户可以根据不同条件隐藏和显示行的好的教程/建议?

最佳答案

如果一些单元格将打开(导致多一个单元格)而其他单元格将关闭(导致多 3 个单元格),则索引路径计算将非常复杂。仅使用 indexPath.row 中的模 3 不会削减它。

另一种解决方案可能是将三个单元合并为一个。您只需要两种细胞类型,“闭合”和“展开”。这样你就不必再考虑 NSFetchedResultsController 的索引路径算法了。

无论如何,您都需要跟踪哪些单元格是打开的,哪些单元格是展开的。您只需要在两个地方考虑​​到这一点,cellForRowAtIndexPathheightForRowAtIndexPath

关于ios - 跨多个 UITableViewCells 拆分单个核心数据对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29037067/

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