Pinning a conversation to the top is to fix a one-to-one or group conversation at the top of the conversation list to facilitate search. A conversation pinned to the top will not be displayed under another conversation with an update. The status of a conversation being pinned to the top will be stored on the server and synced to new devices.
Note
This feature is supported only by the SDK of the Enhanced edition on v5.3.425 or later.
The maximum number of conversations that can be pinned to the top is 50, and this limit cannot be increased.
Effect
You can use this feature to achieve the pinning effect as shown in the figure below, where the two group chats with a gray background are pinned conversations:
Interface Description
Pinning a Conversation to the Top
Call pinConversation (Java / Swift / Objective-C / C++) to set whether to pin a conversation to the top.
When getConversationList is called to get the conversation list, it will first return the conversation that is pinned to the top and then other conversations. You can check whether a conversation is pinned to the top through the isPinned field of the V2TIMConversation object.
The conversations are sorted based on the orderKey field of the V2TIMConversation object. This field is an integer that increases as the conversation is activated when a message is sent/received, a draft is set, or the conversation is pinned to the top.
A conversation pinned to the top will always be displayed above others. If multiple conversations are pinned to the top, they will be sorted in the original order.
For example, if there are five conversations (1, 2, 3, 4, and 5 in order) and conversations 2 and 3 are pinned to the top, the new order will be 2, 3, 1, 4, and 5. Obviously, conversations 2 and 3 are displayed above others, and conversation 2 is displayed above conversation 3.
Sample code:
Java
Swift
Objective-C
C++
// If `isPinned` is `true`, the conversation is pinned to the top; otherwise, it is not.
If you have called addConversationListener (Java /Swift / Objective-C / C++) to add a conversation listener, you can get the isPinned value of the V2TIMConversation object in onConversationChanged and determine whether the pinned status of a conversation has changed.