OStack程序员社区-中国程序员成长平台

标题: iphone - NSPredicate 在数组中排除 "name" [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 19:21
标题: iphone - NSPredicate 在数组中排除 "name"

我有这个名称数组 (listedName),我想在 fbFriends 数组中过滤掉并删除它们。我该怎么做?看来我的条款不起作用。

// add "names" to listed name array
NSMutableArray *aTempFriendList = [[NSMutableArray alloc] init];
for (int n = 0; n < [[self friendsList] count]; n++) {
    NSDictionary *dFriend = [[self friendsList] objectAtIndex:n];
    NSString *sName = [dFriend objectForKey"name"];
    [aTempFriendList addObject:sName];
}

NSPredicate *predicate = [NSPredicate predicateWithFormat"(name not in %@)", aTempFriendList];
[fbFriends filterUsingPredicate:predicate]; 



Best Answer-推荐答案


应该是@"not (name in %@)"

关于iphone - NSPredicate 在数组中排除 "name",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9262984/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4