我在我的应用程序中使用 Quickblox iOS SDK 进行即时消息传递。当用户登录时,我检索消息列表。我正在尝试检索最后 N 条消息。我使用本文档中指定的扩展请求参数:
http://quickblox.com/developers/SimpleSample-chat_users-ios#List_chat_messages
此调用检索前 100 条消息,而不是最近的消息。
我还检查了从这里发送的参数列表:
http://quickblox.com/developers/Chat#Retrieve_messages
使用限制和排序参数的组合仍然不能得到想要的结果。
- 如何请求检索对话框中的最后 N 条消息?
- 如何加载最后但 N 条消息?例如,最近 100 条消息之前的最后 100 条消息。类似于限制 100,但反过来跳过 100 条。
Best Answer-推荐答案 strong>
//试试这个:
NSMutableDictionary *extendedRequest = [NSMutableDictionary new];
NSDate *now = [NSDate date];
extendedRequest[@"date_sent[lte]"]= @([now timeIntervalSince1970]);
extendedRequest[@"sort_desc"]= @"date_sent";
//get the most recent 50 messages
extendedRequest[@"limit"] = @(50);
[QBChat messagesWithDialogID:self.dialog.ID extendedRequest:extendedRequest delegate:self];
关于ios - Quickblox 消息获取最后 n 条消息,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26981259/
|