KKEmoticonView.h 452 B

123456789101112131415161718192021222324
  1. //
  2. // KKEmoticonView.h
  3. // WWImageEdit
  4. //
  5. // Created by 邬维 on 2017/1/12.
  6. // Copyright © 2017年 kook. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class KKEmoticonTool;
  10. @interface KKEmoticonView : UIView
  11. - (instancetype)initWithImage:(UIImage *)image tool:(KKEmoticonTool *)tool;
  12. /**
  13. 设置当前选中的表情
  14. @param view 表情view
  15. */
  16. + (void)setActiveEmoticonView:(KKEmoticonView*)view;
  17. //- (void)setScale:(CGFloat)scale;
  18. @end