123456789101112131415161718192021222324 |
- //
- // KKEmoticonView.h
- // WWImageEdit
- //
- // Created by 邬维 on 2017/1/12.
- // Copyright © 2017年 kook. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class KKEmoticonTool;
- @interface KKEmoticonView : UIView
- - (instancetype)initWithImage:(UIImage *)image tool:(KKEmoticonTool *)tool;
- /**
- 设置当前选中的表情
- @param view 表情view
- */
- + (void)setActiveEmoticonView:(KKEmoticonView*)view;
- //- (void)setScale:(CGFloat)scale;
- @end
|