23 lines
881 B
Objective-C
23 lines
881 B
Objective-C
|
|
// Created by Tencent on 2023/06/09.
|
|
// Copyright © 2023 Tencent. All rights reserved.
|
|
#import <UIKit/UIKit.h>
|
|
#import "TUIBlackListViewDataProvider_Minimalist.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* 【Module name】Block list interferface (TUIBlackListController)
|
|
* 【Function description】It is responsible for pulling the user's blocklist information and displaying it on the page.
|
|
* - ViewController provides the display function of the blocklist, and also realizes the response to user interaction.
|
|
* - Users can also click on a user in the blocklist to remove them from the blocklist or send them a message.
|
|
*/
|
|
@interface TUIBlackListController_Minimalist : UITableViewController
|
|
|
|
@property TUIBlackListViewDataProvider_Minimalist *viewModel;
|
|
|
|
@property(nonatomic, copy) void (^didSelectCellBlock)(TUICommonContactCell_Minimalist *cell);
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|