32 lines
835 B
Objective-C
32 lines
835 B
Objective-C
//
|
|
// QXIMGroupSettingView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2026/1/2.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXGroupSettingInfoModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol QXIMGroupSettingViewDelegate <NSObject>
|
|
|
|
@optional
|
|
-(void)previewMemberList;
|
|
-(void)groupSetMute:(BOOL)isMute muteSwitch:(UISwitch*)muteSwitch;
|
|
-(void)saveGroupInfoWithGroupId:(NSString*)groupId notice:(NSString*)notice name:(NSString*)name;
|
|
@end
|
|
@interface QXIMGroupSettingView : UIView
|
|
@property (nonatomic,strong)QXGroupSettingInfoModel*model;
|
|
@property (nonatomic,weak)id<QXIMGroupSettingViewDelegate>delegate;
|
|
@end
|
|
|
|
@interface QXIMGroupMemberCell :UICollectionViewCell
|
|
@property (nonatomic,strong)UIImageView *headerImageView;
|
|
@property (nonatomic,strong)UILabel *nameLabel;
|
|
@property (nonatomic,strong)QXUserModel *model;
|
|
|
|
@end
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|