gpt4 book ai didi

ios - [__NSCFNumber countByEnumeratingWithState:objects:count:]:无法识别的选择器已发送到实例

转载 作者:行者123 更新时间:2023-12-01 17:40:23 48 4
gpt4 key购买 nike

NSPredicate *predicate = [NSPredicate 
predicateWithFormat:@"todo_category_id IN %@"
argumentArray:array];
todo_category_idNSNumber类型的属性。 array仅包含3个元素,它们也是 NSNumber类型的对象。

我想根据这些ID从Core Data中获取类别。

最佳答案

您的代码是错误的,因为您使用的是错误的方法。改成:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"todo_category_id IN %@", array];

因为整个数组应该是format参数,而不仅仅是数组中的第一项。

关于ios - [__NSCFNumber countByEnumeratingWithState:objects:count:]:无法识别的选择器已发送到实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21704724/

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