28 lines
660 B
Objective-C
28 lines
660 B
Objective-C
//
|
|
// TLEmojiGroupDisplayView.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 16/9/27.
|
|
// Copyright © 2016年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "TLEmojiGroupDisplayViewDelegate.h"
|
|
#import "TLEmojiGroupDisplayModel.h"
|
|
|
|
@interface TLEmojiGroupDisplayView : UIView
|
|
|
|
@property (nonatomic, weak) id<TLEmojiGroupDisplayViewDelegate> delegate;
|
|
|
|
@property (nonatomic, weak) NSMutableArray *data;
|
|
|
|
@property (nonatomic, strong) NSMutableArray *displayData;
|
|
|
|
@property (nonatomic, strong) UICollectionView *collectionView;
|
|
|
|
@property (nonatomic, assign) NSInteger curPageIndex;
|
|
|
|
- (void)scrollToEmojiGroupAtIndex:(NSInteger)index;
|
|
|
|
@end
|