gpt4 book ai didi

objective-c - 在 NSDIctionary 中对数字使用最大/最小值时出错

转载 作者:行者123 更新时间:2023-12-03 16:50:39 25 4
gpt4 key购买 nike

使用新的文字语法创建字典,因此:

NSDictionary *valuesByHour = @{
@9: @2,
@10: @2,
@11: @3,
@12: @3,
@1: @2,
@2: @2
};

然后,我想找到最大值,如下所示:

return [[self.valuesByHour allValues] valueForKeyPath:@"max.intValue"];

但收到此错误:

[<__NSCFNumber 0x9f6fbe0> valueForUndefinedKey:]: this class is not key value coding-compliant for the key max.

也尝试过以旧的方式实际创建 NSNumbers,例如[NSNumber numberWithInt:2]。

最佳答案

您缺少关键路径开头的@

return [[self.valuesByHour allValues] valueForKeyPath:@"@max.intValue"];

关于objective-c - 在 NSDIctionary 中对数字使用最大/最小值时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14023776/

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