参见英文答案 >
Creating NSPredicate dynamically by setting the key programmatically2
我正在尝试使用这个字符串“193e00a75148b4006a451452c618ccec”写入一个NSPredicate来获取带有my_column值的行,我得到以下崩溃.
我正在尝试使用这个字符串“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和%@格式不同,所以组合这些两种方法是非常容易出错(和不必要的).