我正在iOS App.i中集成QuickBlox SDK想要使用username.how获取所有用户以使用Quickblox完成此操作。将要进行搜索查询。请向我提出任何想法。
使用案例:每当用户在SearchBar中输入一些字符时,我就必须获取具有该名称的所有QuickBlox用户。
答案 0 :(得分:1)
你应该使用方法:
+ (QB_NONNULL QBRequest *)usersWithFullName:(QB_NONNULL NSString *)userFullName
page:(QB_NULLABLE QBGeneralResponsePage *)page
successBlock:(QB_NULLABLE void (^)(QBResponse * QB_NONNULL_S response, QBGeneralResponsePage * QB_NULLABLE_S page, NSArray QB_GENERIC(QBUUser *) * QB_NULLABLE_S users))successBlock
errorBlock:(QB_NULLABLE void (^)(QBResponse * QB_NONNULL_S response))errorBlock;
其中userFullName
将是搜索栏中的字符串
分页参数(例如):
QBGeneralResponsePage * page = [QBGeneralResponsePage responsePageWithCurrentPage:1 perPage:100]