我用来获取 nsmutable 数组的一些内容,如果我不使用 nsstring 进行查询,它可以正常工作:
NSLog(@"user information %@", [usersInfo filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"%K == 'Joe", @"id"]]);
但是尝试使用 nsstring 来查询它不起作用的用户:
NSString *user="Joe";
NSLog(@"user information %@", [usersInfo filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"%K == user", @"id"]]]);
你们中的任何人都知道我在做什么错吗?或者使用 NSString 查询用户最好的方法是什么?