// Created by Tencent on 2023/06/09. // Copyright © 2023 Tencent. All rights reserved. #import #import "TUIGroupConversationListViewDataProvider.h" NS_ASSUME_NONNULL_BEGIN typedef void (^TUIGroupConversationListSelectCallback)(TUICommonContactCellData *cellData); /** * 【Module name】Group list interface (TUIGroupConversationListController) * 【Function description】Responsible for pulling the group information of the user and displaying it in the interface. * Users can view all the groups they hava joined through the group list interface. The groups are displayed in the order of the first latter of the group * names, and the group names with special symbols are displayed at the end. */ @interface TUIGroupConversationListController : UIViewController @property(nonatomic, strong) UITableView *tableView; @property(nonatomic, strong) TUIGroupConversationListViewDataProvider *viewModel; /** * The selected callback, if it is empty, TUIKit will jump by itself */ @property(nonatomic, copy) TUIGroupConversationListSelectCallback __nullable onSelect; @end NS_ASSUME_NONNULL_END