41 lines
766 B
Objective-C
41 lines
766 B
Objective-C
//
|
|
// XCGameRoomFaceView.h
|
|
// XChat
|
|
//
|
|
// Created by 卫明何 on 2017/9/29.
|
|
// Copyright © 2017年 XC. All rights reserved.
|
|
//
|
|
// 发送表情view
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RoomHostDelegate.h"
|
|
|
|
//displaymodel
|
|
#import "XCGameRoomFaceViewDisplayModel.h"
|
|
|
|
|
|
|
|
@interface XPRoomFaceView : UIView
|
|
|
|
///房间内才需要
|
|
@property (nonatomic,weak) id<RoomHostDelegate> delegate;
|
|
|
|
/**
|
|
分组的表情数组
|
|
*/
|
|
@property (strong, nonatomic) NSMutableArray<NSMutableArray *> *faceInfos;
|
|
|
|
/**
|
|
表情collection
|
|
*/
|
|
@property (strong, nonatomic) UICollectionView *faceCollectionView;
|
|
|
|
/**
|
|
初始化方法,必须调用这个
|
|
@param uid 房主uid
|
|
@return self
|
|
*/
|
|
- (instancetype)initWithRoomUid:(NSString *)uid;
|
|
|
|
@end
|