增加换肤功能

This commit is contained in:
启星
2025-08-14 10:07:49 +08:00
parent f6964c1e89
commit 4f9318d98e
8789 changed files with 978530 additions and 2 deletions

View File

@@ -0,0 +1,36 @@
// Created by Tencent on 2023/06/09.
// Copyright © 2023 Tencent. All rights reserved.
/**
* This file declares the view model used to implement the blocklist page.
* The view model is responsible for some data processing and business logic in the interface, such as pulling blacklist information and loading blocklist
* data.
*/
#import <Foundation/Foundation.h>
#import "TUICommonContactCell.h"
NS_ASSUME_NONNULL_BEGIN
/**
* 【Module name】 TUIBlackListViewModel
* 【Function description】It is responsible for pulling the user's blocklist information and displaying it on the page.
* The view model is also responsible for loading the pulled information to facilitate data processing in the client.
*/
@interface TUIBlackListViewDataProvider : NSObject
/**
* Bocklist data
* The blocklist stores the detailed information of the blocked users.
* Include details such as user avatar (URL and image), user ID, user nickname, etc. Used to display detailed information when you click to a detailed meeting.
*/
@property(readonly) NSArray<TUICommonContactCellData *> *blackListData;
@property(readonly) BOOL isLoadFinished;
- (void)loadBlackList;
@end
NS_ASSUME_NONNULL_END