gpt4 book ai didi

ios - NSPredicate - 无法解析格式字符串

转载 作者:IT王子 更新时间:2023-10-29 08:04:42 27 4
gpt4 key购买 nike

<分区>

我正在尝试编写一个 NSPredicate 以使用此字符串“193e00a75148b4006a451452c618ccec”获取具有 my_column 值的行,但出现以下崩溃。

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unable to parse the format string "my_column=193e00a75148b4006a451452c618ccec"'

我的谓词语句

fetchRequest.predicate=[NSPredicate predicateWithFormat:[NSString stringWithFormat:@"%@==\"%@\"",attributeName,itemValue]];

也试过了

fetchRequest.predicate=[NSPredicate predicateWithFormat:[NSString stringWithFormat:@"%@ == %@",attributeName,itemValue]];

这个

fetchRequest.predicate=[NSPredicate predicateWithFormat:[NSString stringWithFormat:@"%@ = %@",attributeName,itemValue]];

还有这个

fetchRequest.predicate=[NSPredicate predicateWithFormat:[NSString stringWithFormat:@"%@=\"%@\"",attributeName,itemValue]];

请帮忙。

我在尝试 Martin R 的回答时发现了这一点

fetchRequest.predicate=[NSPredicate predicateWithFormat:@"%@==%@",attributeName,itemValue];

我传递的 attributeName 带有一个 ' ',所以我取下 attributeName 并对其进行硬编码,然后它就可以正常工作了。

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