我正在使用Paulmelnikow的ObjCMongoDB连接到iOS中的mongodb。我想使用MongoCursor以块的形式加载数据。我需要帮助才能实现这一点。
感谢。
答案 0 :(得分:0)
您可以只调用-[MongoDBCollection cursorForFindAllWithError:]
或其他返回游标的方法,然后迭代它。
NSError *error = nil;
MongoCursor *cursor = [collection cursorForFindAllWithError:&error];
if (cursor) {
for (BSONDocument *document in cursor) {
// do something with document
}
} else {
NSLog(@"Error: %@", [error localizedDescription]);
}