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

前端之家收集整理的这篇文章主要介绍了ios – NSPredicate – 无法解析格式字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Creating NSPredicate dynamically by setting the key programmatically2
我正在尝试使用这个字符串“193e00a75148b4006a451452c618ccec”写入一个NSPredicate来获取带有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:@"%@ == %@",itemValue]];

这个

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

和这个

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

请帮忙.

我发现这一点,当我试图用马丁R的答案

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

attributeName我传来一个”,所以我拿掉了attributeName和硬编码,然后它工作正常.

解决方法

将字符串括在单引号中:
[NSPredicate predicateWithFormat:@"my_column = '193e00a75148b4006a451452c618ccec'"]

或者更好,使用参数替换:

[NSPredicate predicateWithFormat:@"my_column = %@",@"193e00a75148b4006a451452c618ccec"]

如果搜索字符串包含特殊字符,则第二种方法避免了问题
如“或”.

备注:建立谓词时切勿使用stringWithFormat. stringWithFormat和predicateWithFormat处理%K和%@格式不同,所以组合这些两种方法是非常容易出错(和不必要的).

原文链接:https://www.f2er.com/iOS/337597.html

猜你在找的iOS相关文章