WBEmoticonInputView.h 508 B

123456789101112131415161718192021
  1. //
  2. // WBStatusComposeEmoticonView.h
  3. // YYKitExample
  4. //
  5. // Created by ibireme on 15/9/6.
  6. // Copyright (C) 2015 ibireme. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol WBStatusComposeEmoticonViewDelegate <NSObject>
  10. @optional
  11. - (void)emoticonInputDidTapText:(NSString *)text;
  12. - (void)emoticonInputDidTapBackspace;
  13. @end
  14. /// 表情输入键盘
  15. @interface WBEmoticonInputView : UIView
  16. @property (nonatomic, weak) id<WBStatusComposeEmoticonViewDelegate> delegate;
  17. + (instancetype)sharedView;
  18. @end