gpt4 book ai didi

ios - 为 ids 的 NSArray 构造 NSPredicate

转载 作者:行者123 更新时间:2023-11-28 21:59:06 26 4
gpt4 key购买 nike

我创建了名为 Student 的实体,我们在其中存储学生详细信息。

enter image description here

我正在尝试构建谓词以根据那里的 ID 获取一些学生详细信息。

NSPredicate *predicate = [NSPredicate predicateWithFormat:[NSString stringWithFormat:@"Sid IN %@",@[@"1",@"2",@"3"]]];

总是报错

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unable to parse the format string "Sid IN (
1,
2,
3
)"'

最佳答案

你不应该(几乎在所有情况下都没有必要)混合使用 stringWithFormat:predicateWithFormat:。在这种情况下,一个简单的

[NSPredicate predicateWithFormat:@"Sid IN %@", @[@"1",@"2",@"3"]]

应该做。

关于ios - 为 ids 的 NSArray 构造 NSPredicate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25540995/

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