增加换肤功能
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
//
|
||||
// TUIGroupManageDataProvider.h
|
||||
// TUIGroup
|
||||
//
|
||||
// Created by harvy on 2021/12/24.
|
||||
// Copyright © 2023 Tencent. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
@class TUIUserModel;
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@protocol TUIGroupManageDataProviderDelegate <NSObject>
|
||||
|
||||
- (void)insertSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation;
|
||||
- (void)reloadData;
|
||||
- (void)showCoverViewWhenMuteAll:(BOOL)show;
|
||||
|
||||
- (void)insertRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;
|
||||
- (void)reloadRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation;
|
||||
|
||||
- (void)onError:(int)code desc:(NSString *)desc operate:(NSString *)operate;
|
||||
|
||||
@end
|
||||
|
||||
@interface TUIGroupManageDataProvider : NSObject
|
||||
|
||||
@property(nonatomic, assign) BOOL muteAll;
|
||||
@property(nonatomic, copy) NSString *groupID;
|
||||
@property(nonatomic, assign) BOOL currentGroupTypeSupportSettingAdmin;
|
||||
@property(nonatomic, assign) BOOL currentGroupTypeSupportAddMemberOfBlocked;
|
||||
@property(nonatomic, weak) id<TUIGroupManageDataProviderDelegate> delegate;
|
||||
@property(nonatomic, strong, readonly) NSMutableArray *datas;
|
||||
|
||||
- (void)loadData;
|
||||
|
||||
- (void)mutedAll:(BOOL)mute completion:(void (^)(int, NSString *))completion;
|
||||
- (void)mute:(BOOL)mute user:(TUIUserModel *)user;
|
||||
|
||||
- (void)updateMuteMembersFilterAdmins;
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user