我正在开发一个应用程序,并且正在处理我想要过滤的联系人列表。因此我正在使用 quickblox 的自定义对象,这是我的代码:
- (NSArray *)idsFromContactListItems {
NSMustableArray *idsToFetch = [NSMustableArray new];
NSArray *contactListItems = self.contactList;
for (QBContactListItem *item in contactListItems) {
NSMutableDictionary *getRequest = [NSMutableDictionary new];
[getRequest setObject:@"personal" forKey:@"identifier"];
if ([QBCustomObjects objectsWithClassName=@"cards" extendedRequest:getRequest delegate:self]){
idsToFetch addObject:@(item.userID)];}
else {};
}
return idsToFetch;
};
我的数组 idsToFetch 返回所有值,但我的自定义对象类中只有 1 个具有个人标识符。