// // YOUPAINIMInputEmoticonButton.h // NIMKit // // Created by chris. // Copyright (c) 2015年 NetEase. All rights reserved. // #import @class NIMInputEmoticon; @protocol NIMEmoticonButtonTouchDelegate - (void)selectedEmoticon:(NIMInputEmoticon*)emoticon catalogID:(NSString*)catalogID; @end @interface YOUPAINIMInputEmoticonButton : UIButton @property (nonatomic, strong) NIMInputEmoticon *emoticonData; @property (nonatomic, copy) NSString *catalogID; @property (nonatomic, weak) id delegate; + (YOUPAINIMInputEmoticonButton*)youpaificonButtonWithData:(NIMInputEmoticon*)data catalogID:(NSString*)catalogID delegate:( id)delegate; - (void)youpaifonIconSelected:(id)sender; @end