愚蠢的问题,我知道:
我有这段代码:
MWMarks *fakeMark = [[MWMarks alloc]init];
fakeMark.sortId=13;
NSArray * fakeArray = [NSArray arrayWithObject:fakeMark];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"sortID = %d",13];
NSArray *filteredArray = [fakeArray filteredArrayUsingPredicate:predicate];
NSInteger section=[filteredArray indexOfObject:fakeMark];
我希望'部分'返回0。 但是,似乎谓词不满意。任何人都可以指出我的语法错误吗?