gpt4 book ai didi

ios - 字典中的单元格标题

转载 作者:行者123 更新时间:2023-11-29 04:15:35 27 4
gpt4 key购买 nike

我有一个包含 3 个部分的表格。我还有一系列字典,用于命名我的单元格等。我想根据最喜欢的键使用字典中的项目填充第二部分。

这就是我的字典的样子:

<array>
<dict>
<key>favorite</key>
<string>NO</string>
<key>title</key>
<string>accessories.sku</string>
<key>checkedState</key>
<string>NO</string>
</dict>
<dict>
<key>favorite</key>
<string>YES</string>
<key>title</key>
<string>accessoriesImage</string>
<key>checkedState</key>
<string>NO</string>
</dict>

我之前已经遍历过这本字典来处理其他事情,我知道我需要再次这样做,但我无法完全理解这种情况。

static NSString *kTitleKey = @"title";
static NSString *kCheckedState = @"checkedState";
static NSString *kFavorite = @"favorite";

for (id dict in myArray]) {
if ([dict[kFavorite] isEqualToString:@"YES"]) {
cell.textLabel.text = [myArray objectAtIndex:[indexPath row] valueForKey:kTitleKey];
}
}

但是cell.textLabel.text = [myArray objectAtIndex:[indexPath row] valueForKey:kTitleKey]当然是不正确的。

最佳答案

您已经匹配了您的字典[kFavorite],那么您为什么要从myArray中获取它。你可以像这样编写你的循环,

for (id dict in myArray]) {
if ([dict[kFavorite] isEqualToString:@"YES"]) {
cell.textLabel.text = dict[kTitleKey];
}
}

关于ios - 字典中的单元格标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13770545/

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