gpt4 book ai didi

iphone - For循环产生 "unrecognized selector sent to instance"错误

转载 作者:行者123 更新时间:2023-12-03 20:51:53 25 4
gpt4 key购买 nike

我的应用程序中的简单 for 循环设置遇到问题。到达第二个 for 循环后,我的应用程序崩溃并收到以下错误:

for (NSArray *a in dict)
{
for (NSString *s in a)
{

}
}

错误:

-[__NSCFString countByEnumeratingWithState:objects:count:]: unrecognized selector sent to instance 0x1c5b6810

这看起来有点奇怪。我只想查看字典中的每个数组,然后当我在循环中访问它们时,检查这些数组中的字符串。

最佳答案

你可能想要这样的东西:

for (NSArray *a in [dict allValues])

因为根据您的错误消息,您的键似乎是字符串(__NSCFString)。 for (NSArray *s in dict) 的行为是枚举字典的

关于iphone - For循环产生 "unrecognized selector sent to instance"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12867680/

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