以下代码打印以下行:
TestApp[1156:207] Array: (
"Type A"
)
但是不对。 NSPredicate
应忽略区分大小写
有谁知道我做错了什么?
NSArray *array = [[NSArray alloc] initWithObjects:[[TestObject alloc] initWithType:@"Type A"],
[[TestObject alloc] initWithType:@"Type B"],
[[TestObject alloc] initWithType:@"Type C"],
[[TestObject alloc] initWithType:@"Type D"],
[[TestObject alloc] initWithType:@"Type E"], nil];
NSArray *filter = [[NSArray alloc] initWithObjects:@"Type A", @"Type d", nil];
NSPredicate *predicate = [NSPredicate predicateWithFormat: @"SELF.type IN[cd] %@", filter];
NSLog(@"Array: %@", [array filteredArrayUsingPredicate:predicate]);
答案 0 :(得分:2)
此线程中提出了类似的问题:Case insensitive NSPredicate for strings from an array?
似乎IN不支持[c]修饰符。 您的案例的解决方案是更改查询,例如使用CONTAINS。
[NSPredicate predicateWithFormat: @"ANY %@ CONTAINS[cd] SELF.type", filter]