跳到主要内容

getConversationListSplit

功能介绍

说明

分页获取会话列表。

函数原型


- (void)getConversationListSplitWithOffset:(NSInteger)offset
count:(NSInteger)count
onSuccess:(nullable OIMConversationsInfoCallback)onSuccess
onFailure:(nullable OIMFailureCallback)onFailure;

输入参数

参数名称参数类型是否必填描述
offsetNSInteger分页拉取起始下标
countNSInteger一页拉取的数量

返回结果

名称类型描述
onSuccessNSArray< OIMConversationInfo *>成功返回
onFailureOIMFailureCallback失败返回

代码示例


[OIMManager.manager getConversationListSplitWithOffset:0
count:20
onSuccess:^(NSArray<OIMConversationInfo *> * _Nullable conversations) {

} onFailure:^(NSInteger code, NSString * _Nullable msg) {

}];