NIMSDK-iOS
载入中...
搜索中...
未找到
NIMAddEmptyRecentSessionBySessionOption.h
浏览该文件的文档.
1//
2// Created by chenjili on 2021/3/22.
3// Copyright (c) 2021 Netease. All rights reserved.
4//
5
6#import <Foundation/Foundation.h>
7
8NS_ASSUME_NONNULL_BEGIN
9
11/**
12 * 是否填入最后一条消息
13 * @discussion ,默认为 NO,仅创建空会话;为YES,将同时添加最后一条消息
14 */
15@property (nonatomic,assign) BOOL withLastMsg;
16
17/**
18 * 如果没有最后一条消息,是否用一条空消息补位
19 * @discussion ,默认为 YES,创建一条空消息补位;为NO,不使用补位消息
20 */
21@property (nonatomic,assign) BOOL addEmptyMsgIfNoLastMsgExist;
22
23@end
24
25NS_ASSUME_NONNULL_END
Definition: NIMAddEmptyRecentSessionBySessionOption.h:11
BOOL withLastMsg
Definition: NIMAddEmptyRecentSessionBySessionOption.h:15
BOOL addEmptyMsgIfNoLastMsgExist
Definition: NIMAddEmptyRecentSessionBySessionOption.h:21