YOUPAINIMInputEmoticonButton.h 802 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // YOUPAINIMInputEmoticonButton.h
  3. // NIMKit
  4. //
  5. // Created by chris.
  6. // Copyright (c) 2015年 NetEase. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class NIMInputEmoticon;
  10. @protocol NIMEmoticonButtonTouchDelegate <NSObject>
  11. - (void)selectedEmoticon:(NIMInputEmoticon*)emoticon catalogID:(NSString*)catalogID;
  12. @end
  13. @interface YOUPAINIMInputEmoticonButton : UIButton
  14. @property (nonatomic, strong) NIMInputEmoticon *emoticonData;
  15. @property (nonatomic, copy) NSString *catalogID;
  16. @property (nonatomic, weak) id<NIMEmoticonButtonTouchDelegate> delegate;
  17. + (YOUPAINIMInputEmoticonButton*)youpaificonButtonWithData:(NIMInputEmoticon*)data catalogID:(NSString*)catalogID delegate:( id<NIMEmoticonButtonTouchDelegate>)delegate;
  18. - (void)youpaifonIconSelected:(id)sender;
  19. @end